You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
-- autocmd! remove all autocommands, if entered under a group it will clear that group
|
|
|
|
vim.cmd [[
|
|
|
|
augroup _general_settings
|
|
|
|
autocmd!
|
|
|
|
autocmd FileType qf,help,man,lspinfo nnoremap <silent> <buffer> q :close<CR>
|
|
|
|
autocmd TextYankPost * silent!lua require('vim.highlight').on_yank({higroup = 'Search', timeout = 200})
|
|
|
|
autocmd BufWinEnter * :set formatoptions-=cro
|
|
|
|
autocmd FileType qf set nobuflisted
|
|
|
|
augroup end
|
|
|
|
|
|
|
|
augroup _git
|
|
|
|
autocmd!
|
|
|
|
autocmd FileType gitcommit setlocal wrap
|
|
|
|
autocmd FileType gitcommit setlocal spell
|
|
|
|
augroup end
|
|
|
|
|
|
|
|
augroup _markdown
|
|
|
|
autocmd!
|
|
|
|
autocmd FileType markdown setlocal wrap
|
|
|
|
autocmd FileType markdown setlocal spell
|
|
|
|
augroup end
|
|
|
|
|
|
|
|
augroup _auto_resize
|
|
|
|
autocmd!
|
|
|
|
autocmd VimResized * tabdo wincmd =
|
|
|
|
augroup end
|
|
|
|
|
|
|
|
augroup _alpha
|
|
|
|
autocmd!
|
|
|
|
autocmd User AlphaReady set showtabline=0 | autocmd BufUnload <buffer> set showtabline=2
|
|
|
|
augroup end
|
|
|
|
|
|
|
|
]]
|
|
|
|
|