diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-05-28 11:49:15 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-05-28 11:49:15 +0100 |
| commit | 63204515d77360a51347dd6e0b078e1e931d65af (patch) | |
| tree | ed78f80ba256f2b53d5924d8683c472b1516311a /lua/user/cmp.lua | |
| parent | 4b0d085006724b6f5a1d6db5b980800db44e0e88 (diff) | |
| parent | e60e3e816a1f9fe8338733734286c3c56e58f944 (diff) | |
Merge branch 'vgg' into 07-Telescope07-Telescope
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" }, |
