diff options
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/lua/plugins/copilot.lua | 8 | ||||
| -rw-r--r-- | nvim/lua/plugins/filetypes.lua | 4 | ||||
| -rw-r--r-- | nvim/lua/plugins/harpoon.lua | 61 | ||||
| -rw-r--r-- | nvim/lua/plugins/treesitter.lua | 2 |
4 files changed, 1 insertions, 74 deletions
diff --git a/nvim/lua/plugins/copilot.lua b/nvim/lua/plugins/copilot.lua deleted file mode 100644 index 2935745..0000000 --- a/nvim/lua/plugins/copilot.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - 'github/copilot.vim', - enabled = false, - -- ft = - config = function() - vim.cmd[[Copilot setup]] - end -} diff --git a/nvim/lua/plugins/filetypes.lua b/nvim/lua/plugins/filetypes.lua index e36562b..bafb528 100644 --- a/nvim/lua/plugins/filetypes.lua +++ b/nvim/lua/plugins/filetypes.lua @@ -1,9 +1,5 @@ return { { - 'habamax/vim-godot', - ft = 'gdscript' - }, - { 'vim-pandoc/vim-pandoc', enabled = false, ft = { "markdown", "pandoc" }, diff --git a/nvim/lua/plugins/harpoon.lua b/nvim/lua/plugins/harpoon.lua deleted file mode 100644 index abc9e04..0000000 --- a/nvim/lua/plugins/harpoon.lua +++ /dev/null @@ -1,61 +0,0 @@ -return { - 'ThePrimeagen/harpoon', -- quick file navigator - branch = "harpoon2", - dependencies = { - 'nvim-lua/plenary.nvim', - 'nvim-telescope/telescope.nvim' - }, - config = function() - require("harpoon"):setup() - end, - keys = { - { - "<leader><cr>", - function() - local harpoon = require("harpoon") - harpoon.ui:toggle_quick_menu(harpoon:list()) - end, - desc = "Open Harpoon Quickmenu" - }, - { - "<leader>m", - function() - local harpoon = require("harpoon") - harpoon:list():add() - end, - desc = "Add file to harpoon" - }, - { - "<leader>1", - function() - local harpoon = require("harpoon") - harpoon:list():select(1) - end, - desc = "Navigate to the first file" - }, - { - "<leader>2", - function() - local harpoon = require("harpoon") - harpoon:list():select(2) - end, - desc = "Navigate to the second file" - }, - { - "<leader>3", - function() - local harpoon = require("harpoon") - harpoon:list():select(3) - end, - desc = "Navigate to the third file" - }, - { - "<leader>4", - function() - local harpoon = require("harpoon") - harpoon:list():select(4) - end, - desc = "Navigate to the fourth file" - }, - } -} diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua index 4062d14..a218e13 100644 --- a/nvim/lua/plugins/treesitter.lua +++ b/nvim/lua/plugins/treesitter.lua @@ -2,7 +2,7 @@ return { 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate', opts = { - ensure_installed = { "help", "lua", "python", "java", "javascript", "typescript", "c", "latex", "vim", "go" }, + ensure_installed = { "help", "lua", "python", "javascript", "typescript", "c", "latex", "vim", "go" }, auto_install = true, highlight = { enable = true, |
