Add indentLine plugin
This commit is contained in:
parent
86f591ea6b
commit
661fb0c8b0
1 changed files with 2 additions and 1 deletions
|
@ -66,6 +66,7 @@ Plugin 'vim-airline/vim-airline-themes'
|
||||||
" MISC.
|
" MISC.
|
||||||
Plugin 'preservim/nerdtree' " A tree explorer plugin
|
Plugin 'preservim/nerdtree' " A tree explorer plugin
|
||||||
Plugin 'Xuyuanp/nerdtree-git-plugin' " A NERDTree plugin showing git status
|
Plugin 'Xuyuanp/nerdtree-git-plugin' " A NERDTree plugin showing git status
|
||||||
|
Plugin 'Yggdroot/indentLine' " Display thin vertical lines at each indentation level
|
||||||
Plugin 'junegunn/goyo.vim' " Distraction free writing by removing UI elements and centering everything
|
Plugin 'junegunn/goyo.vim' " Distraction free writing by removing UI elements and centering everything
|
||||||
Plugin 'junegunn/limelight.vim' " Dim paragraphs above and below the active paragraph
|
Plugin 'junegunn/limelight.vim' " Dim paragraphs above and below the active paragraph
|
||||||
|
|
||||||
|
@ -102,7 +103,6 @@ let NERDTreeIgnore=['^__pycache__$', '\.pyc', '\~$'] " ignore files in NERDTree
|
||||||
" in normal mode ,ne will open NERDTree
|
" in normal mode ,ne will open NERDTree
|
||||||
nmap <leader>ne :NERDTree<CR>
|
nmap <leader>ne :NERDTree<CR>
|
||||||
|
|
||||||
|
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" COLORS {{{
|
" COLORS {{{
|
||||||
|
@ -135,6 +135,7 @@ let &t_SR = "\e[3 q" " cursor underline on replace mode
|
||||||
let &t_EI = "\e[2 q" " cursor block otherwise
|
let &t_EI = "\e[2 q" " cursor block otherwise
|
||||||
|
|
||||||
set number " show line numbers
|
set number " show line numbers
|
||||||
|
set spelllang=en,fr
|
||||||
set showcmd " show command in bottom bar
|
set showcmd " show command in bottom bar
|
||||||
set cursorline " highlight current line
|
set cursorline " highlight current line
|
||||||
filetype indent on " load filetype-specific indent files
|
filetype indent on " load filetype-specific indent files
|
||||||
|
|
Loading…
Add table
Reference in a new issue