From d0585ecf49f8eebc44cac7dae2a686d1ef33e141 Mon Sep 17 00:00:00 2001 From: Polesznyák Márk Date: Sun, 28 Sep 2025 21:16:48 +0200 Subject: feat: replace nvim-cmp with blink.cmp --- lua/pml68/configs/cmp.lua | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 lua/pml68/configs/cmp.lua (limited to 'lua/pml68/configs/cmp.lua') diff --git a/lua/pml68/configs/cmp.lua b/lua/pml68/configs/cmp.lua deleted file mode 100644 index 06d16cf..0000000 --- a/lua/pml68/configs/cmp.lua +++ /dev/null @@ -1,35 +0,0 @@ -local cmp = require("cmp") - -cmp.setup({ - sources = cmp.config.sources({ - { name = 'nvim_lsp' }, - { name = 'path' }, - { name = 'vimtex' }, - { name = 'crates' }, - }, { - { name = 'buffer' }, - }), - snippet = { - expand = function(args) - vim.snippet.expand(args.body) - end, - }, - performance = { - throttle = 0, - }, - window = { - completion = { - border = "rounded", - scrollbar = false, - }, - documentation = { - border = "rounded", - scrollbar = false, - }, - }, - mapping = cmp.mapping.preset.insert({ - [''] = cmp.mapping.confirm({ select = true }), - [''] = cmp.mapping.select_prev_item({ behavior = 'select' }), - [''] = cmp.mapping.select_next_item({ behavior = 'select' }), - }), -}) -- cgit v1.2.3