From 977f0ef3ede2802f279d7323627b3f20e4532bba Mon Sep 17 00:00:00 2001 From: pika Date: Wed, 2 Apr 2025 17:54:56 +0200 Subject: [PATCH] addet proper file disable without renaming --- lua/pika/plugins/lsp/blink-cmp.lua | 4 ++++ lua/pika/plugins/lsp/{nvim-cmp.lua.bak => nvim-cmp.lua} | 6 ++++++ 2 files changed, 10 insertions(+) rename lua/pika/plugins/lsp/{nvim-cmp.lua.bak => nvim-cmp.lua} (98%) diff --git a/lua/pika/plugins/lsp/blink-cmp.lua b/lua/pika/plugins/lsp/blink-cmp.lua index e871cdd..be08b5e 100644 --- a/lua/pika/plugins/lsp/blink-cmp.lua +++ b/lua/pika/plugins/lsp/blink-cmp.lua @@ -1,3 +1,7 @@ +-- if true then return {} end +-- WARNING: If this line is true, then the plugin will NOT get sourced! +-- NOTE: Has to be commented out if blink should be used + return { -- ╭───────────╮ -- │ blink.cmp │ diff --git a/lua/pika/plugins/lsp/nvim-cmp.lua.bak b/lua/pika/plugins/lsp/nvim-cmp.lua similarity index 98% rename from lua/pika/plugins/lsp/nvim-cmp.lua.bak rename to lua/pika/plugins/lsp/nvim-cmp.lua index 6b3c862..0149837 100644 --- a/lua/pika/plugins/lsp/nvim-cmp.lua.bak +++ b/lua/pika/plugins/lsp/nvim-cmp.lua @@ -1,3 +1,9 @@ +if true then + return {} +end +-- WARNING: If this line is true, then the plugin will NOT get sourced! +-- NOTE: Has to be commented out if blink should be used + return { { "hrsh7th/nvim-cmp",