diff options
| author | triethyl <triethylammonium@pm.me> | 2025-09-16 10:24:20 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-09-16 10:24:20 -0400 |
| commit | 33707edbeb8a7227e529e51436b9545cd86d8c2f (patch) | |
| tree | a03b12cb9ebaf5385632879487236ef4ab01aaae /pkgs/custom-neovim/config/lua/plugins/completion.lua | |
| parent | f93f626d04970ab6f3db7744e65ab70d88ecb12e (diff) | |
neovim: fixed markdown, zoxide, completion, and auto-session
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins/completion.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/completion.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/custom-neovim/config/lua/plugins/completion.lua b/pkgs/custom-neovim/config/lua/plugins/completion.lua index 3228662..678b3e2 100644 --- a/pkgs/custom-neovim/config/lua/plugins/completion.lua +++ b/pkgs/custom-neovim/config/lua/plugins/completion.lua @@ -13,11 +13,12 @@ return { require("blink.cmp").setup { snippets = { preset = 'luasnip' }, sources = { - default = { 'lsp', 'path', 'snippets', 'buffer' }, + default = { 'lsp', 'path', 'snippets'}, }, cmdline = { - keymap = { preset = 'inherit' }, - completion = { menu = { auto_show = true } }, + keymap = { preset = 'none' }, + -- keymap = { preset = 'inherit' }, + -- completion = { menu = { auto_show = true } }, }, } end, |
