summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkkard2 <[email protected]>2024-04-28 13:58:23 +0200
committerkkard2 <[email protected]>2024-04-28 13:58:23 +0200
commit42261647201984cc5403c89f0a34d9cacc9ce13e (patch)
treec8db63ea8f6515478ccbd829f574d8d9413a31ea
parent799c3ed55e82e8e989cfaaedf02b761aa139ecc9 (diff)
I JUST WANT CMP TO HAVE READABLE TEXT IS THAT TOO MUCH TO ASK
-rw-r--r--nvim/init.lua15
1 files changed, 13 insertions, 2 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index ed7fdb8..760e7a9 100644
--- a/nvim/init.lua
+++ b/nvim/init.lua
@@ -146,11 +146,22 @@ vim.api.nvim_set_hl(0, "DiagnosticError", { foreground = "White", background = "
vim.api.nvim_set_hl(0, "DiagnosticWarn", { foreground = "Yellow" })
vim.api.nvim_set_hl(0, "CmpItemAbbr", { foreground = "White" })
+vim.api.nvim_set_hl(0, "CmpItemAbbrDefault", { foreground = "White" })
vim.api.nvim_set_hl(0, "CmpItemAbbrMatch", { foreground = "Yellow" })
+vim.api.nvim_set_hl(0, "CmpItemAbbrMatchDefault", { foreground = "Yellow" })
vim.api.nvim_set_hl(0, "CmpItemAbbrMatchFuzzy", { foreground = "Yellow" })
+vim.api.nvim_set_hl(0, "CmpItemAbbrMatchFuzzyDefault", { foreground = "Yellow" })
vim.api.nvim_set_hl(0, "CmpItemKind", { foreground = "White" })
--- todo: specific kinds having different colors
+vim.api.nvim_set_hl(0, "CmpItemKindDefault", { foreground = "White" })
+vim.api.nvim_set_hl(0, "CmpItemKindConstant", { foreground = "Red" })
+vim.api.nvim_set_hl(0, "CmpItemKindStruct", { foreground = "Lime" })
+vim.api.nvim_set_hl(0, "CmpItemKindClass", { foreground = "Lime" })
+
+vim.api.nvim_set_hl(0, "CmpItemMenu", { foreground = "Cyan" })
+vim.api.nvim_set_hl(0, "CmpItemMenuDefault", { foreground = "Cyan" })
+
+vim.api.nvim_set_hl(0, "CmpItemMenuDefault", { foreground = "Cyan" })
vim.api.nvim_set_hl(0, "LineNrAbove", { foreground = "LightYellow" })
vim.api.nvim_set_hl(0, "LineNr", { foreground = "White" })
@@ -203,7 +214,7 @@ require("lazy").setup({
},
{
"nvim-telescope/telescope.nvim",
- tag = "0.1.4",
+ tag = "0.1.6",
dependencies = { "nvim-lua/plenary.nvim" },
lazy = true,
keys = {