19 lines
426 B
VimL
19 lines
426 B
VimL
" Connecting the plugin manager
|
|
lua require('init')
|
|
|
|
augroup packer_user_config
|
|
autocmd!
|
|
autocmd BufWritePost plugins.lua source <afile> | PackerCompile
|
|
augroup end
|
|
|
|
" Automatic file trimming when saving
|
|
autocmd BufWritePre * :%s/\s\+$//e
|
|
|
|
" Подключение темы sonokai
|
|
if has('termguicolors')
|
|
set termguicolors
|
|
endif
|
|
|
|
let g:sonokai_style = 'atlantis'
|
|
let g:sonokai_better_performance = 1
|
|
colorscheme sonokai |