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. limitations under the License.
]] ]]
-- https://github.com/Yggdroot/indentLine require("indent_blankline").setup {
use_treesitter = true,
-- more options at https://www.jetbrains.com/lp/mono/ show_first_indent_level = false,
vim.g.indentLine_char = "" show_trailing_blankline_indent = false,
-- Disable conceal for some syntax plugins show_current_context = true,
vim.g.vim_json_conceal = 0 max_indent_increase = 1
vim.g.markdown_syntax_conceal = 0 }
vim.g.indentLine_fileTypeExclude = { "NvimTree", }
+2 -2
View File
@@ -146,8 +146,8 @@ local plugins = {
event = "VimEnter", event = "VimEnter",
}, },
{ {
"Yggdroot/indentLine", "lukas-reineke/indent-blankline.nvim",
config = function () require("plugin.config.indentLine") end, config = function () require("plugin.config.indent-blankline") end,
lazy = true, lazy = true,
event = "VimEnter", event = "VimEnter",
}, },