2 files changed,
7 insertions(+),
2 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2024-04-02 23:02:05 +0300
Parent:
9a37b06
jump to
| M | lazy-lock.json |
| M | lua/plugins/completion.lua |
M
lazy-lock.json
@@ -26,7 +26,7 @@ "neotest-go": { "branch": "feat/testify-suite", "commit": "9656cc6578867d91c5ebfd3c3aa4c9368da2574e" },
"neotest-plenary": { "branch": "master", "commit": "dcaf5ed67a9e28a246e9783319e5aa6c9ea1c584" }, "none-ls.nvim": { "branch": "main", "commit": "72e25ed4162474ef5d666525853f8a42bffd97c5" }, "nvim-autopairs": { "branch": "master", "commit": "c6139ca0d5ad7af129ea6c89cb4c56093f2c034a" }, - "nvim-cmp": { "branch": "main", "commit": "04e0ca376d6abdbfc8b52180f8ea236cbfddf782" }, + "nvim-cmp": { "branch": "main", "commit": "ce16de5665c766f39c271705b17fff06f7bcb84f" }, "nvim-lspconfig": { "branch": "master", "commit": "5b364bd4db0fb68a56ffe427a370920854acb834" }, "nvim-treesitter": { "branch": "master", "commit": "f87882858438834d2fbb6379aa2be37de901751b" }, "nvim-treesitter-context": { "branch": "master", "commit": "b8b7e52c1517d401d7c519787d5dc4528c41291a" },
M
lua/plugins/completion.lua
@@ -28,6 +28,12 @@ luasnip.lsp_expand(args.body)
end, }, window = {}, + view = { + entries = { + follow_cursor = true, + }, + }, + experimental = { ghost_text = true }, formatting = { format = function(_, vim_item) vim_item.kind = ({@@ -92,7 +98,6 @@ { name = "buffer", max_item_count = 4 },
{ name = "luasnip", max_item_count = 3 }, { name = "path", max_item_count = 2 }, }, - experimental = { ghost_text = true }, } end, },