From f0d9e33ffb937bfa971109e572a113f744c5ab23 Mon Sep 17 00:00:00 2001 From: Joshua Nussbaum <67082011+0x4D5352@users.noreply.github.com> Date: Sat, 10 Aug 2024 18:20:55 -0500 Subject: [PATCH] add transparent-nvim and disable copilot --- lua/custom/plugins/copilot-cmp.lua | 9 +++++++++ lua/custom/plugins/copilot.lua | 3 +++ lua/custom/plugins/transparent-nvim.lua | 3 +++ 3 files changed, 15 insertions(+) create mode 100644 lua/custom/plugins/transparent-nvim.lua diff --git a/lua/custom/plugins/copilot-cmp.lua b/lua/custom/plugins/copilot-cmp.lua index f0adb7a6..560f181a 100644 --- a/lua/custom/plugins/copilot-cmp.lua +++ b/lua/custom/plugins/copilot-cmp.lua @@ -1,6 +1,15 @@ +if true then + return {} +end return { 'zbirenbaum/copilot-cmp', config = function() require('copilot_cmp').setup() end, + opts = { + filetypes = { + ['.'] = false, + go = true, + }, + }, } diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua index 23c3a554..ca5fa63c 100644 --- a/lua/custom/plugins/copilot.lua +++ b/lua/custom/plugins/copilot.lua @@ -1,3 +1,6 @@ +if true then + return {} +end return { 'zbirenbaum/copilot.lua', opts = { diff --git a/lua/custom/plugins/transparent-nvim.lua b/lua/custom/plugins/transparent-nvim.lua new file mode 100644 index 00000000..c1daa3bc --- /dev/null +++ b/lua/custom/plugins/transparent-nvim.lua @@ -0,0 +1,3 @@ +return { + 'xiyaowong/transparent.nvim', +}