summaryrefslogtreecommitdiff
path: root/lua/config/plugins/completion.lua
diff options
context:
space:
mode:
authorMarcelo <setanta@gmail.com>2025-03-30 04:26:45 -0300
committerMarcelo <setanta@gmail.com>2025-04-04 00:10:23 -0300
commit43af656a9e1325e76c69e6f5e694214156c278f1 (patch)
tree9c44dbd5842107b662bd5795d238ace98677e648 /lua/config/plugins/completion.lua
parent7eec86e74ffb085d48da574b02af12bce3f73d93 (diff)
Replace nvim-lspconfig and blink completion with NVIM 0.11 native options.
Diffstat (limited to 'lua/config/plugins/completion.lua')
-rw-r--r--lua/config/plugins/completion.lua29
1 files changed, 0 insertions, 29 deletions
diff --git a/lua/config/plugins/completion.lua b/lua/config/plugins/completion.lua
deleted file mode 100644
index f8cc602..0000000
--- a/lua/config/plugins/completion.lua
+++ /dev/null
@@ -1,29 +0,0 @@
-return {
- {
- "saghen/blink.cmp",
- dependencies = "rafamadriz/friendly-snippets",
-
- version = "v0.13.1",
-
- opts = {
- keymap = {
- preset = "default",
- -- The default `<C-Space>` is my tmux prefix.
- ["<M-Space>"] = { "show", "show_documentation", "hide_documentation" },
- },
-
- appearance = {
- use_nvim_cmp_as_default = true,
- nerd_font_variant = 'mono'
- },
-
- sources = {
- min_keyword_length = 2,
- default = { "lsp", "path", "snippets", "buffer" },
- },
-
- signature = { enabled = true },
- },
- opts_extend = { "sources.default" }
- }
-}