nvim-config/init.vim
Valentin Popov aa1b9a1201
Updated the theme
Signed-off-by: Valentin Popov <valentin@popov.link>
2023-03-30 16:46:26 +04:00

19 lines
364 B
VimL

" Connecting the plugin manager
lua require('init')
augroup packer_user_config
autocmd!
autocmd BufWritePost plugins.lua source <afile> | PackerCompile
augroup end
" Setting up the theme
colorscheme carbonfox
set cursorline
" Automatic file trimming when saving
autocmd BufWritePre * :%s/\s\+$//e
" Enable line number display
set number
set relativenumber