diff --git a/lua/core/plugins/indent-blankline.lua b/lua/core/plugins/indent-blankline.lua index 345e54ba..b7450716 100644 --- a/lua/core/plugins/indent-blankline.lua +++ b/lua/core/plugins/indent-blankline.lua @@ -5,50 +5,38 @@ local M = { scope = { enabled = vim.g.config.plugins.indent_blankline.enable_scope, }, - indentLine_enabled = 1, - char = "▏", - filetype_exclude = { - "startify", - "dashboard", - "dotooagenda", - "log", - "fugitive", - "gitcommit", - "packer", - "vimwiki", - "markdown", - "json", - "txt", - "vista", - "help", - "todoist", - "NvimTree", - "neo-tree", - "peekaboo", - "git", - "TelescopePrompt", - "undotree", - "flutterToolsOutline", - "", -- for all buffers without a file type + indent = { + char = { "|", "¦", "┆", "┊" }, }, - buftype_exclude = { "terminal", "nofile" }, - show_trailing_blankline_indent = false, - show_first_indent_level = true, - show_current_context = true, - char_list = { "|", "¦", "┆", "┊" }, - space_char = " ", - context_patterns = { - "class", - "function", - "method", - "block", - "list_literal", - "selector", - "^if", - "^table", - "if_statement", - "while", - "for", + exclude = { + filetypes = { + "startify", + "dashboard", + "dotooagenda", + "log", + "fugitive", + "gitcommit", + "packer", + "vimwiki", + "markdown", + "json", + "txt", + "vista", + "help", + "todoist", + "NvimTree", + "neo-tree", + "peekaboo", + "git", + "TelescopePrompt", + "undotree", + "flutterToolsOutline", + "", -- for all buffers without a file type + }, + buftypes = { + "terminal", + "nofile", + }, }, }, config = function(_, opts)