summaryrefslogtreecommitdiffstats
path: root/vim
diff options
context:
space:
mode:
authorAudric Schiltknecht <audric.schiltknecht@viagenie.ca>2017-07-14 17:04:44 -0400
committerAudric Schiltknecht <audric.schiltknecht@viagenie.ca>2017-07-14 17:04:44 -0400
commitda596439bb47e7cd1966d2a5a36450d32e0c21dd (patch)
treecd5b06bff1e8e44fbeb2caa4a4c1b280057e2101 /vim
parent4c21dd5d1dcba29442a26dbd1610a6cf80785942 (diff)
downloaddotfiles-da596439bb47e7cd1966d2a5a36450d32e0c21dd.tar.gz
dotfiles-da596439bb47e7cd1966d2a5a36450d32e0c21dd.tar.bz2
dotfiles-da596439bb47e7cd1966d2a5a36450d32e0c21dd.zip
Vim: Update configuration file
- Extend text width to 100 - Replace ack with ag
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc14
1 files changed, 7 insertions, 7 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 577f01d..42e9d26 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -35,7 +35,7 @@ set copyindent
" Le terminal a un fond foncé
set background=dark
-colorscheme koehler
+colorscheme chocolateliquor
" Coloration syntaxique
syntax on
@@ -46,11 +46,11 @@ filetype plugin on
" Animation lors de la fermeture des parenthèses
set showmatch
-" Retour à la ligne auto au bout de 80 lignes
-set textwidth=80
+" Retour à la ligne auto au bout de 100 lignes
+set textwidth=100
-" Utilisation de ack a la place de grep
-set grepprg=ack\ -a
+" Utilisation de ag a la place de grep
+set grepprg=ag
" Utilisation de la souris
set mouse=a
@@ -61,8 +61,8 @@ set nopaste
"""""""""""""
" Surligne la ligne courante
-"set cursorline
-"highlight CursorLine term=reverse cterm=reverse
+set cursorline
+highlight CursorLine term=reverse cterm=reverse
" Taille des tabs
set shiftwidth=4