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