Skip to content

Commit d914fae

Browse files
committed
Fixed indentLine (again)
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
1 parent c866ca6 commit d914fae

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

config/nvim/plugins.vim

+3-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,9 @@ Plug 'garyburd/go-explorer', { 'for': 'go', 'do': 'go get github.com/garyburd/go
228228
" ---- Indentation Columns {{{
229229
" Display an indent line
230230
Plug 'Yggdroot/indentLine'
231-
let g:indentLine_char = ""
232-
let g:indentLine_noConcealCursor = 1
231+
" let g:indentLine_char = "│"
232+
let g:indentLine_char = "¦"
233+
let g:indentLine_setConceal = 0
233234

234235
" }}}
235236
" ---- Cursorline Colors {{{

config/nvim/settings.vim

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ set showmatch " Show the matching bracket
2727
set matchpairs=(:),{:},[:] " List of characters we expect in balanced pairs
2828

2929
set cursorline " highlights the current line
30+
set conceallevel=2
31+
set concealcursor=
3032

3133
" Folds
3234
set foldminlines=4

0 commit comments

Comments
 (0)