Replace indent guide plugin

This commit is contained in:
2023-09-08 02:28:30 +02:00
parent a9e27e6d96
commit a159890c71
2 changed files with 9 additions and 10 deletions
@@ -14,11 +14,10 @@
limitations under the License.
]]
-- https://github.com/Yggdroot/indentLine
-- more options at https://www.jetbrains.com/lp/mono/
vim.g.indentLine_char = ""
-- Disable conceal for some syntax plugins
vim.g.vim_json_conceal = 0
vim.g.markdown_syntax_conceal = 0
vim.g.indentLine_fileTypeExclude = { "NvimTree", }
require("indent_blankline").setup {
use_treesitter = true,
show_first_indent_level = false,
show_trailing_blankline_indent = false,
show_current_context = true,
max_indent_increase = 1
}
+2 -2
View File
@@ -146,8 +146,8 @@ local plugins = {
event = "VimEnter",
},
{
"Yggdroot/indentLine",
config = function () require("plugin.config.indentLine") end,
"lukas-reineke/indent-blankline.nvim",
config = function () require("plugin.config.indent-blankline") end,
lazy = true,
event = "VimEnter",
},