diff --git a/vim/.vimrc b/vim/.vimrc index f11f1f5..304da7c 100755 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -18,6 +18,7 @@ set encoding=utf-8 syntax enable " Create the `tags` file (may need to install ctags first) +" for autocompletion command! MakeTags !ctags -R . "4 spaces instead of tabs @@ -44,8 +45,10 @@ set backspace=2 " Vim & Tmux background color fix set t_ut= -" Terminal colors -"Colorscheme +" 256 colors support, set it before colorscheme! +set t_Co=256 + +" Light colorscheme by default colorscheme greygull "Automatically source vimrc on save.