diff --git a/init.lua b/init.lua index 94af65f7..55c35e7f 100644 --- a/init.lua +++ b/init.lua @@ -1095,7 +1095,6 @@ require('lazy').setup({ 'javascript', -- 'ts_ls', 'nu', - -- 'nix', 'css', 'json', 'comment', diff --git a/lua/custom/plugins/grug-far.lua b/lua/custom/plugins/grug-far.lua index 2ed7b983..f0e31f53 100644 --- a/lua/custom/plugins/grug-far.lua +++ b/lua/custom/plugins/grug-far.lua @@ -1,6 +1,10 @@ return { { 'MagicDuck/grug-far.nvim', + init = function() + -- vim.g.copilot_enabled = false + vim.keymap.set('n', 'g', ':GrugFar') + end, config = function() require('grug-far').setup { -- options, see Configuration section below diff --git a/lua/custom/plugins/noice.lua b/lua/custom/plugins/noice.lua deleted file mode 100644 index 3188c3c7..00000000 --- a/lua/custom/plugins/noice.lua +++ /dev/null @@ -1,20 +0,0 @@ -return { - -- { - -- 'folke/noice.nvim', - -- event = 'VeryLazy', - -- opts = { - -- -- add any options here - -- cmdline = { - -- -- view = 'cmdline', - -- }, - -- }, - -- dependencies = { - -- -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries - -- 'MunifTanjim/nui.nvim', - -- -- OPTIONAL: - -- -- `nvim-notify` is only needed, if you want to use the notification view. - -- -- If not available, we use `mini` as the fallback - -- -- 'rcarriga/nvim-notify', - -- }, - -- }, -} diff --git a/lua/custom/plugins/symbols.lua b/lua/custom/plugins/symbols.lua deleted file mode 100644 index 2de07169..00000000 --- a/lua/custom/plugins/symbols.lua +++ /dev/null @@ -1,13 +0,0 @@ -return { - { - 'stevearc/aerial.nvim', - opts = { - -- open_automatic = true, - }, - -- Optional dependencies - dependencies = { - 'nvim-treesitter/nvim-treesitter', - 'nvim-tree/nvim-web-devicons', - }, - }, -} diff --git a/lua/custom/plugins/vim-unimpaired.lua b/lua/custom/plugins/vim-unimpaired.lua new file mode 100644 index 00000000..bf498ee8 --- /dev/null +++ b/lua/custom/plugins/vim-unimpaired.lua @@ -0,0 +1,9 @@ +return { + -- { + -- "kevinhwang91/nvim-bqf", + -- lazy = false, + -- }, + { + 'tpope/vim-unimpaired', + }, +}