summaryrefslogtreecommitdiff
path: root/lua/tjk/plugins/cmp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tjk/plugins/cmp.lua')
-rw-r--r--lua/tjk/plugins/cmp.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/tjk/plugins/cmp.lua b/lua/tjk/plugins/cmp.lua
new file mode 100644
index 0000000..6c87867
--- /dev/null
+++ b/lua/tjk/plugins/cmp.lua
@@ -0,0 +1,13 @@
+-- TODO replace with native cmp
+return {
+ "blink-cmp",
+ { src = "https://github.com/Saghen/blink.cmp", version = "v1" },
+ setup = {
+ keymap = {
+ preset = "super-tab",
+ ["<C-k>"] = { "select_prev", "fallback" },
+ ["<C-j>"] = { "select_next", "fallback" },
+ },
+ cmdline = { enabled = false },
+ },
+}