diff options
| author | triethyl <triethylammonium@pm.me> | 2025-12-03 09:19:46 -0500 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-12-03 09:19:46 -0500 |
| commit | 8b9502c1b647adf15cf19b76e49d0b6b10ef28d7 (patch) | |
| tree | 86fd30bca24fa64e453e497c94f36978562751f4 /pkgs | |
| parent | 959026485d7783be4963e71bd93edecb720441af (diff) | |
home-manager: fixed iamb feature
Diffstat (limited to 'pkgs')
| -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 +} |
