11 lines
246 B
VimL
11 lines
246 B
VimL
|
" Connecting the plugin manager
|
||
|
lua require('plugins')
|
||
|
|
||
|
augroup packer_user_config
|
||
|
autocmd!
|
||
|
autocmd BufWritePost plugins.lua source <afile> | PackerCompile
|
||
|
augroup end
|
||
|
|
||
|
" Automatic file trimming when saving
|
||
|
autocmd BufWritePre * :%s/\s\+$//e
|