refactor(nvim): move plugin config to the

... `after/plugin` directory
This commit is contained in:
Oliver Davies 2022-01-09 23:13:41 +00:00
parent 8cf3fed368
commit 7d3b82884c
13 changed files with 4 additions and 14 deletions

View file

@ -0,0 +1,18 @@
local status_ok, indent_blankline = pcall(require, "indent_blankline")
if not status_ok then
return
end
vim.opt.list = true
vim.opt.listchars = {
eol = "",
}
vim.cmd [[highlight IndentBlanklineIndent1 guifg=#555555 gui=nocombine]]
indent_blankline.setup {
char_highlight_list = {
"IndentBlanklineIndent1",
},
show_end_of_line = true,
}