Skip to content

Commit

Permalink
Fixed indentLine (again)
Browse files Browse the repository at this point in the history
indentLine was messing with elzr/vim-json again. They changed
the syntax for preventing from being aggressive in changing
the `concealcursor` settings.

Related: elzr/vim-json#75
  • Loading branch information
docwhat committed Oct 20, 2016
1 parent c866ca6 commit d914fae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config/nvim/plugins.vim
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,9 @@ Plug 'garyburd/go-explorer', { 'for': 'go', 'do': 'go get github.com/garyburd/go
" ---- Indentation Columns {{{
" Display an indent line
Plug 'Yggdroot/indentLine'
let g:indentLine_char = ""
let g:indentLine_noConcealCursor = 1
" let g:indentLine_char = "│"
let g:indentLine_char = "¦"
let g:indentLine_setConceal = 0

" }}}
" ---- Cursorline Colors {{{
Expand Down
2 changes: 2 additions & 0 deletions config/nvim/settings.vim
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ set showmatch " Show the matching bracket
set matchpairs=(:),{:},[:] " List of characters we expect in balanced pairs

set cursorline " highlights the current line
set conceallevel=2
set concealcursor=

" Folds
set foldminlines=4
Expand Down

0 comments on commit d914fae

Please sign in to comment.