summaryrefslogtreecommitdiff
path: root/nvim/lua/config/blink-cmp.lua
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2026-04-04 21:18:45 +0200
committerSkladnayazebra <skladnayazebra@gmail.com>2026-04-04 21:18:45 +0200
commit5938a465dbbf910ca0609a1db9ac13d52616af7e (patch)
tree14d70b052e32edc190d7304555fc958eb0ed6ec0 /nvim/lua/config/blink-cmp.lua
parentfeae0fffe6c39eb2732c7afbd16599f949a00b3d (diff)
nvim: refactor plugins config; add tree-sitter with proper config this time
Diffstat (limited to 'nvim/lua/config/blink-cmp.lua')
-rw-r--r--nvim/lua/config/blink-cmp.lua42
1 files changed, 0 insertions, 42 deletions
diff --git a/nvim/lua/config/blink-cmp.lua b/nvim/lua/config/blink-cmp.lua
deleted file mode 100644
index c9c0447..0000000
--- a/nvim/lua/config/blink-cmp.lua
+++ /dev/null
@@ -1,42 +0,0 @@
-return {
- 'saghen/blink.cmp',
- dependencies = { 'rafamadriz/friendly-snippets' },
-
- version = '1.*',
-
- ---@module 'blink.cmp'
- ---@type blink.cmp.Config
- opts = {
- keymap = {
- preset = 'default',
- -- <up>-<down> to navigate, <right> to accept
- ['<C-j>'] = { 'select_next', 'fallback' },
- ['<C-k>'] = { 'select_prev', 'fallback' },
- ['<Tab>'] = { 'select_and_accept', 'fallback' },
- ['<C-l>'] = { 'select_and_accept', 'fallback' },
- },
-
- appearance = {
- nerd_font_variant = 'mono'
- },
-
- completion = { documentation = { auto_show = true } },
-
- sources = {
- default = { 'lsp', 'path', 'snippets', 'buffer' },
- providers = {
- snippets = {
- opts = {
- friendly_snippets = true,
- extended_filetypes = {
- typescript = { 'javascript' },
- }
- }
- }
- }
- },
-
- fuzzy = { implementation = "prefer_rust_with_warning" },
- },
- opts_extend = { "sources.default" }
-}