diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-05-28 11:57:23 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-05-28 11:57:23 +0100 |
| commit | ed7eee18e3833dba8ef02e3a669a582f527bcafd (patch) | |
| tree | e8749f1618d60a479d49f43acb52c66cd9a4e495 /lua/user/cmp.lua | |
| parent | 6fbc8c23123a6b44590a3fa6c656c2f5b98ae89e (diff) | |
| parent | deaf6a9824ff47756379c00f430e784f059b581c (diff) | |
Merge branch 'vgg' into 11-gitsigns11-gitsigns
Diffstat (limited to 'lua/user/cmp.lua')
| -rw-r--r-- | lua/user/cmp.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/user/cmp.lua b/lua/user/cmp.lua index a151214..0ba1fc7 100644 --- a/lua/user/cmp.lua +++ b/lua/user/cmp.lua @@ -102,6 +102,7 @@ cmp.setup { -- vim_item.kind = string.format('%s %s', kind_icons[vim_item.kind], vim_item.kind) -- This concatonates the icons with the name of the item kind vim_item.menu = ({ nvim_lsp = "[LSP]", + nvim_lua = "[NVIM_LUA]", luasnip = "[Snippet]", buffer = "[Buffer]", path = "[Path]", @@ -111,6 +112,7 @@ cmp.setup { }, sources = { { name = "nvim_lsp" }, + { name = "nvim_lua" }, { name = "luasnip" }, { name = "buffer" }, { name = "path" }, |
