1
0
forked from extern/nix-config

lunarvim: Add indent-blankline plugin

Now it's easier to see where in the indentation tree we're at.
This commit is contained in:
Donovan Glover 2021-11-15 12:49:02 -05:00
parent 9d51a33379
commit 196ecca512
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -9,6 +9,21 @@ lvim.leader = "space"
lvim.keys.normal_mode["<C-s>"] = ":w<cr>"
-- Plugins
lvim.plugins = {
{
"lukas-reineke/indent-blankline.nvim",
event = "BufRead",
setup = function()
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = ""
vim.g.indent_blankline_filetype_exclude = {"help", "terminal", "dashboard"}
vim.g.indent_blankline_buftype_exclude = {"terminal"}
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_first_indent_level = false
end
},
}
lvim.builtin.dashboard.active = true
lvim.builtin.terminal.active = true
lvim.builtin.nvimtree.setup.view.side = "left"