feat(nvim): improve kanagawa colors for noice.nvim

This commit is contained in:
Price Hiller 2022-10-25 19:27:11 -05:00
parent bb55d8e684
commit b6a651eb8b

View File

@ -100,10 +100,27 @@ require("kanagawa").setup({
NeoTreeNormal = { bg = colors.sumiInk1b },
NeoTreeNormalNC = { bg = colors.sumiInk1b },
NoiceCmdlineIconCmdline = { fg = colors.oniViolet },
NoiceCmdlinePopupBorderCmdline = { fg = colors.oniViolet },
NoiceCmdlineIconFilter = { fg = colors.springGreen },
NoiceCmdlinePopupBorderFilter = { fg = colors.springGreen },
NoiceCmdLineIconLua = { fg = colors.crystalBlue },
NoiceCmdlinePopupBorderLua = { fg = colors.crystalBlue },
NoiceCmdlineIconHelp = { fg = colors.surimiOrange },
NoiceCmdlinePopupBorderHelp = { fg = colors.surimiOrange },
NoiceCmdLineIconSearch = { fg = colors.roninYellow },
NoiceCmdlinePopupBorderSearch = { fg = colors.roninYellow },
NoiceCmdlineIconIncRename = { fg = colors.peachRed },
NoiceCmdlinePopupdBorderIncRename = { fg = colors.peachRed }
},
})
-- NOTE: Colors for SmoothCursor
vim.api.nvim_set_hl(0, "SmoothCursorCursor", { fg = colors.roninYellow })
vim.api.nvim_set_hl(0, "SmoothCursorTrailBig1", { fg = colors.autumnYellow })