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.
38 lines
967 B
38 lines
967 B
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 = 'Visual', 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
|
|
]]
|
|
|
|
-- Autoformat
|
|
-- augroup _lsp
|
|
-- autocmd!
|
|
-- autocmd BufWritePre * lua vim.lsp.buf.formatting()
|
|
-- augroup end
|