From 3466af8e967db3484731b86420cdb15ce8dc2fab Mon Sep 17 00:00:00 2001 From: pika Date: Fri, 2 Aug 2024 21:59:13 +0200 Subject: [PATCH] some changes? --- lua/pika/plugins/colorschemes.lua | 4 ++-- lua/pika/plugins/init.lua | 8 -------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/lua/pika/plugins/colorschemes.lua b/lua/pika/plugins/colorschemes.lua index f522d50..7ba8666 100644 --- a/lua/pika/plugins/colorschemes.lua +++ b/lua/pika/plugins/colorschemes.lua @@ -2,7 +2,7 @@ return { { "sontungexpt/witch", - priority = 1000, + -- priority = 1000, lazy = false, config = function(_, opts) require("witch").setup(opts) @@ -17,7 +17,7 @@ return { { "ribru17/bamboo.nvim", lazy = false, - priority = 1000, -- Make sure to load this before all the other start plugins. + -- priority = 1000, -- Make sure to load this before all the other start plugins. config = function() require("bamboo").setup({ -- ────────────────────────────< optional configuration here >───────────────────────── diff --git a/lua/pika/plugins/init.lua b/lua/pika/plugins/init.lua index 431faa6..2299bb6 100644 --- a/lua/pika/plugins/init.lua +++ b/lua/pika/plugins/init.lua @@ -2,12 +2,4 @@ return { "nvim-lua/plenary.nvim", -- lua functions that many plugins use "christoomey/vim-tmux-navigator", -- tmux & split window navigation "dstein64/nvim-scrollview", - { - "sontungexpt/witch", - priority = 1000, - lazy = false, - config = function(_, opts) - require("witch").setup(opts) - end, - }, }