nvim-config/init.vim
Valentin Popov 3dc419e361
Configured indent
Signed-off-by: Valentin Popov <valentin@popov.link>
2023-03-30 17:16:13 +04:00

25 lines
446 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
" Setting up indents
set autoindent
set expandtab
set tabstop=4
set shiftwidth=4