diff options
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins/blink.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/blink.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/plugins/blink.lua b/pkgs/custom-neovim/config/lua/plugins/blink.lua new file mode 100644 index 0000000..7ff0072 --- /dev/null +++ b/pkgs/custom-neovim/config/lua/plugins/blink.lua @@ -0,0 +1,13 @@ +return { + "blink.cmp", + lazy = true, + event = "InsertEnter", + after = function () + require("blink.cmp").setup { + keymap = { preset = 'default' }, + sources = { + default = { 'lsp', 'snippets', 'path' }, + }, + } + end +} |
