From ee2db6edfd1106507c3459fc3eb6842a55b63c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Tansorier?= Date: Fri, 22 Nov 2019 15:35:42 +0100 Subject: [PATCH] vimrc: Update vimrc to add 80col line and tab gestion --- vimrc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index a610a0b..ae966ce 100644 --- a/vimrc +++ b/vimrc @@ -19,7 +19,7 @@ set guifont=Monospace\ 9 " alias, tags enter with 't' map t -" Cursori (#F0E68C) +" Cursor color (#F0E68C) highlight Cursor guifg=black guibg=#F0E68C " Cursor line @@ -31,6 +31,10 @@ augroup CursorLine au WinLeave * setlocal nocursorline augroup END +" 80 col line +highlight ColorColumn ctermbg=235 guibg=#242424 +set colorcolumn=80 + " autocompletion set wildmenu set wildmode=longest:list,full @@ -42,3 +46,7 @@ cabbrev E Explore set tabstop=4 " " when indenting with '>', use 4 spaces width set shiftwidth=4 +" force tab caratctere instead of space +set noexpandtab + +"autocmd vimenter * NERDTree