From 9289ace4c38b5a35bb0bda90592a08d7a039d14f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 26 Apr 2023 00:04:44 +0100 Subject: [PATCH] chore(nvim): tweak indent line colours --- config/neovim/after/plugin/indent-blankline.lua | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/config/neovim/after/plugin/indent-blankline.lua b/config/neovim/after/plugin/indent-blankline.lua index d48f115..3347ba2 100644 --- a/config/neovim/after/plugin/indent-blankline.lua +++ b/config/neovim/after/plugin/indent-blankline.lua @@ -4,15 +4,10 @@ if not status_ok then end 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 { - char_highlight_list = { - "IndentBlanklineIndent1", - }, show_end_of_line = true, } +