diff options
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/blink.lua | 13 | ||||
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/image.lua | 7 |
2 files changed, 20 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 +} diff --git a/pkgs/custom-neovim/config/lua/plugins/image.lua b/pkgs/custom-neovim/config/lua/plugins/image.lua new file mode 100644 index 0000000..ca02217 --- /dev/null +++ b/pkgs/custom-neovim/config/lua/plugins/image.lua @@ -0,0 +1,7 @@ +return { + "image.nvim", + lazy = false, + after = function () + require("image").setup{} + end +} |
