diff --git a/lua/chadrc.lua b/lua/chadrc.lua index 7c0d5e9..986a835 100644 --- a/lua/chadrc.lua +++ b/lua/chadrc.lua @@ -84,7 +84,6 @@ M.plugin_status = { esc_insertmode = true, -- escape from insert mode using custom keys feline = true, -- statusline gitsigns = true, -- gitsigns in statusline - lspkind = true, -- lsp enhancements lspsignature = true, -- lsp enhancements neoformat = true, -- universal formatter neoscroll = true, -- smooth scroll diff --git a/lua/default_config.lua b/lua/default_config.lua index 7de2485..35b08b8 100644 --- a/lua/default_config.lua +++ b/lua/default_config.lua @@ -89,7 +89,6 @@ M.plugin_status = { esc_insertmode = true, -- escape from insert mode using custom keys feline = true, -- statusline gitsigns = true, -- gitsigns in statusline - lspkind = true, -- lsp enhancements lspsignature = true, -- lsp enhancements neoformat = true, -- universal formatter neoscroll = true, -- smooth scroll diff --git a/lua/plugins/configs/others.lua b/lua/plugins/configs/others.lua index 2bc7c27..5cf70ed 100644 --- a/lua/plugins/configs/others.lua +++ b/lua/plugins/configs/others.lua @@ -46,7 +46,7 @@ M.blankline = function() require("indent_blankline").setup { indentLine_enabled = 1, char = "▏", - indent_blankline_filetype_exclude = { + filetype_exclude = { "help", "terminal", "dashboard", @@ -55,7 +55,7 @@ M.blankline = function() "TelescopePrompt", "TelescopeResults", }, - indent_blankline_buftype_exclude = { "terminal" }, + buftype_exclude = { "terminal" }, show_trailing_blankline_indent = false, show_first_indent_level = false, }