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.
33 lines
813 B
33 lines
813 B
3 years ago
|
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
|
||
|
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
|
||
|
|
||
|
]]
|
||
|
|