chore(nvim): tweak indent line colours

This commit is contained in:
Oliver Davies 2023-04-26 00:04:44 +01:00
parent 64a3a91bdc
commit 5e86877304

View file

@ -4,15 +4,10 @@ if not status_ok then
end end
vim.opt.list = true vim.opt.list = true
vim.opt.listchars = {
eol = "",
}
vim.cmd [[highlight IndentBlanklineIndent1 guifg=#555555 gui=nocombine]] vim.api.nvim_set_hl(0, 'IndentBlankLineChar', { fg = "#2F313C" })
indent_blankline.setup { indent_blankline.setup {
char_highlight_list = {
"IndentBlanklineIndent1",
},
show_end_of_line = true, show_end_of_line = true,
} }