diff options
| author | Crony Akatsuki <crony@cronyakatsuki.xyz> | 2026-01-01 13:55:19 +0100 |
|---|---|---|
| committer | Crony Akatsuki <crony@cronyakatsuki.xyz> | 2026-01-01 13:55:19 +0100 |
| commit | 494ddcf9850a9e425c6c15396a5b322001d3f83c (patch) | |
| tree | 2bad558af86f20de3d836a3db57bb31ce60252c3 /lua/plugins/mini/completion.lua | |
| parent | 8d49f9b18dddcd2d4fa966227db70fb2c710e383 (diff) | |
| download | nvim-494ddcf9850a9e425c6c15396a5b322001d3f83c.zip nvim-494ddcf9850a9e425c6c15396a5b322001d3f83c.tar.gz | |
feat(mini): modularize the config a bit.
Diffstat (limited to 'lua/plugins/mini/completion.lua')
| -rw-r--r-- | lua/plugins/mini/completion.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/plugins/mini/completion.lua b/lua/plugins/mini/completion.lua new file mode 100644 index 0000000..88c8994 --- /dev/null +++ b/lua/plugins/mini/completion.lua @@ -0,0 +1,14 @@ +-- setup snippets +local gen_loader = require("mini.snippets").gen_loader +require("mini.snippets").setup({ + snippets = { + gen_loader.from_lang(), + }, + mappings = { + jump_next = "<C-j>", + jump_prev = "<C-k>", + }, +}) + +-- setup completion +require("mini.completion").setup() |
