changes eh
This commit is contained in:
parent
faff267747
commit
fe9a60f668
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
-- },
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,10 +11,15 @@ local options = {
|
|||
"lua",
|
||||
"rust",
|
||||
},
|
||||
|
||||
highlight = {
|
||||
enable = true,
|
||||
use_languagetree = true,
|
||||
},
|
||||
|
||||
indent = {
|
||||
enable = true,
|
||||
},
|
||||
}
|
||||
|
||||
treesitter.setup(options)
|
||||
|
|
|
|||
Reference in New Issue