File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,8 @@ vim.opt.splitbelow = true
143143-- See `:help 'list'`
144144-- and `:help 'listchars'`
145145vim .opt .list = true
146- vim .opt .listchars = { tab = ' » ' , trail = ' ·' , nbsp = ' ␣' }
146+ -- vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
147+ vim .opt .listchars = { tab = ' ' , trail = ' ·' , nbsp = ' ␣' }
147148
148149-- Preview substitutions live, as you type!
149150vim .opt .inccommand = ' split'
Original file line number Diff line number Diff line change 1+ local highlight = {
2+ ' ColorColumn' ,
3+ ' Whitespace' ,
4+ }
5+
16return {
27 { -- Add indentation guides even on blank lines
38 ' lukas-reineke/indent-blankline.nvim' ,
49 -- Enable `lukas-reineke/indent-blankline.nvim`
510 -- See `:help ibl`
611 main = ' ibl' ,
7- opts = {},
12+ opts = {
13+ indent = { highlight = highlight , char = ' ' },
14+ },
815 },
916}
You can’t perform that action at this time.
0 commit comments