aboutsummaryrefslogtreecommitdiff
path: root/init.vim
blob: 583530beec9d5ea8aaf9fed6808dbc161741032a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
" 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