Added copilot cmp plugin
This commit is contained in:
27
config/nvim/lua/user/plugins/lspkind.lua
Normal file
27
config/nvim/lua/user/plugins/lspkind.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
return {
|
||||
"onsails/lspkind.nvim",
|
||||
opts = {
|
||||
mode = "symbol",
|
||||
symbol_map = {
|
||||
NONE = "",
|
||||
Array = "",
|
||||
Boolean = "⊨",
|
||||
Class = "",
|
||||
Constructor = "",
|
||||
Key = "",
|
||||
Namespace = "",
|
||||
Null = "NULL",
|
||||
Number = "#",
|
||||
Object = "⦿",
|
||||
Package = "",
|
||||
Property = "",
|
||||
Reference = "",
|
||||
Snippet = "",
|
||||
String = "𝓐",
|
||||
TypeParameter = "",
|
||||
Unit = "",
|
||||
Copilot = "",
|
||||
},
|
||||
},
|
||||
vim.api.nvim_set_hl(0, "CmpItemKindCopilot", {fg ="#6CC644"})
|
||||
}
|
||||
Reference in New Issue
Block a user