Skip to content

Commit 9ebd1fa

Browse files
Changin the indent highlight format
1 parent 5616aef commit 9ebd1fa

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

init.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ vim.opt.splitbelow = true
143143
-- See `:help 'list'`
144144
-- and `:help 'listchars'`
145145
vim.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!
149150
vim.opt.inccommand = 'split'
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1+
local highlight = {
2+
'ColorColumn',
3+
'Whitespace',
4+
}
5+
16
return {
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
}

0 commit comments

Comments
 (0)