mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-14 03:14:43 +02:00
indent line plugin option
This commit is contained in:
parent
daf5b8d948
commit
b6866925e1
4 changed files with 30 additions and 8 deletions
|
@ -185,7 +185,27 @@ return require("packer").startup(function(use)
|
|||
event = "BufRead",
|
||||
disable = not O.plugin.ts_playground.active
|
||||
}
|
||||
-- use {'lukas-reineke/indent-blankline.nvim', opt=true, branch = 'lua'}
|
||||
|
||||
use {
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
branch = "lua",
|
||||
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 = true
|
||||
end,
|
||||
disable = not O.plugin.indent_line.active
|
||||
}
|
||||
|
||||
-- use {"nvim-telescope/telescope-fzy-native.nvim", opt = true}
|
||||
-- use {"nvim-telescope/telescope-project.nvim", opt = true}
|
||||
-- -- comments in context
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue