diff --git a/.gitignore b/.gitignore index cfcf4e2..8389435 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ plugin -custom/ +custom diff --git a/lua/colors/highlights.lua b/lua/colors/highlights.lua index 3fed96b..5d2fcd0 100644 --- a/lua/colors/highlights.lua +++ b/lua/colors/highlights.lua @@ -128,10 +128,19 @@ bg("NvimTreeVertSplit", darker_black) fg_bg("NvimTreeWindowPicker", red, black2) -- Telescope -fg("TelescopeBorder", one_bg) -fg_bg("TelescopePreviewTitle", green, one_bg) -fg_bg("TelescopePromptTitle", blue, one_bg) -fg_bg("TelescopeResultsTitle", red, one_bg) +fg_bg("TelescopeBorder", darker_black, darker_black) +fg_bg("TelescopePromptBorder", black2, black2) + +fg_bg("TelescopePromptNormal", white, black2) +fg_bg("TelescopePromptPrefix", red, black2) + +bg("TelescopeNormal", darker_black) + +fg_bg("TelescopePreviewTitle", black, green) +fg_bg("TelescopePromptTitle", black, red) +fg_bg("TelescopeResultsTitle", darker_black,darker_black) + +bg("TelescopeSelection", black2) -- Disable some highlight in nvim tree if transparency enabled if ui.transparency then diff --git a/lua/plugins/configs/nvimtree.lua b/lua/plugins/configs/nvimtree.lua index 22d2f41..58c89d4 100644 --- a/lua/plugins/configs/nvimtree.lua +++ b/lua/plugins/configs/nvimtree.lua @@ -67,4 +67,8 @@ nvimtree.setup { side = "left", width = 25, }, + + git = { + ignore = false, + }, }