changes eh
This commit is contained in:
parent
faff267747
commit
fe9a60f668
|
|
@ -16,6 +16,7 @@ M.load_highlight = function(group)
|
||||||
end
|
end
|
||||||
|
|
||||||
M.core_setup = function ()
|
M.core_setup = function ()
|
||||||
|
-- vim.cmd('hi clear')
|
||||||
require("colors.term_hl")
|
require("colors.term_hl")
|
||||||
require("colors").load_highlight "syntax"
|
require("colors").load_highlight "syntax"
|
||||||
require("colors").load_highlight "nvim"
|
require("colors").load_highlight "nvim"
|
||||||
|
|
|
||||||
|
|
@ -124,4 +124,20 @@ return {
|
||||||
NvimTreeCursorLine = {
|
NvimTreeCursorLine = {
|
||||||
bg = black,
|
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",
|
order = "rounded",
|
||||||
show_version_date = false,
|
show_version_date = false,
|
||||||
show_dependency_version = true,
|
show_dependency_version = true,
|
||||||
max_height = 30,
|
|
||||||
max_width = 20,
|
|
||||||
padding = 1,
|
padding = 1,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,10 +11,15 @@ local options = {
|
||||||
"lua",
|
"lua",
|
||||||
"rust",
|
"rust",
|
||||||
},
|
},
|
||||||
|
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
use_languagetree = true,
|
use_languagetree = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
indent = {
|
||||||
|
enable = true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
treesitter.setup(options)
|
treesitter.setup(options)
|
||||||
|
|
|
||||||
Reference in New Issue