Files
dotfiles/nvim/after/plugin/indentline.lua
2022-12-18 10:47:59 +01:00

21 lines
574 B
Lua

-- https://github.com/lukas-reineke/indent-blankline.nvim
local indent_blankline = require("indent_blankline")
vim.opt.termguicolors = true
vim.api.nvim_set_hl(0, "IndentBlanklineIndent1", { bg = "#1f1f1f", nocombine = true })
vim.api.nvim_set_hl(0, "IndentBlanklineIndent2", { bg = "#1a1a1a", nocombine = true })
indent_blankline.setup({
char = "",
char_highlight_list = {
"IndentBlanklineIndent1",
"IndentBlanklineIndent2",
},
space_char_highlight_list = {
"IndentBlanklineIndent1",
"IndentBlanklineIndent2",
},
show_trailing_blankline_indent = false,
})