diff --git a/lua/colors/init.lua b/lua/colors/init.lua index d3d7641..22d4c42 100644 --- a/lua/colors/init.lua +++ b/lua/colors/init.lua @@ -16,6 +16,7 @@ M.load_highlight = function(group) end M.core_setup = function () + -- vim.cmd('hi clear') require("colors.term_hl") require("colors").load_highlight "syntax" require("colors").load_highlight "nvim" diff --git a/lua/colors/integrations/nvim.lua b/lua/colors/integrations/nvim.lua index 1561d18..c2c7e8d 100644 --- a/lua/colors/integrations/nvim.lua +++ b/lua/colors/integrations/nvim.lua @@ -124,4 +124,20 @@ return { NvimTreeCursorLine = { bg = black, }, + + -- StatusLine = { + -- fg = white, + -- }, + -- StatusLineNC = { + -- fg = white, + -- }, + -- StatusLineSeparator = { + -- fg = bright_black, + -- }, + -- StatusLineTerm = { + -- fg = bright_black, + -- }, + -- StatusLineTermNC = { + -- fg = bright_black, + -- }, } diff --git a/lua/plugins/configs/others.lua b/lua/plugins/configs/others.lua index d093cb6..56a86ce 100644 --- a/lua/plugins/configs/others.lua +++ b/lua/plugins/configs/others.lua @@ -78,8 +78,6 @@ M.crates = function() order = "rounded", show_version_date = false, show_dependency_version = true, - max_height = 30, - max_width = 20, padding = 1, }, } diff --git a/lua/plugins/configs/treesitter.lua b/lua/plugins/configs/treesitter.lua index e5b3e67..89937fc 100644 --- a/lua/plugins/configs/treesitter.lua +++ b/lua/plugins/configs/treesitter.lua @@ -11,10 +11,15 @@ local options = { "lua", "rust", }, + highlight = { enable = true, use_languagetree = true, }, + + indent = { + enable = true, + }, } treesitter.setup(options)