This commit is contained in:
2026-03-11 15:44:04 +01:00
parent 30c84977cb
commit 8d074932e4
4 changed files with 27 additions and 4 deletions

15
lua/plugins/harpoon.lua Normal file
View File

@@ -0,0 +1,15 @@
return {
"thePrimeagen/harpoon",
branch = "harpoon2",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
local harpoon = require('harpoon')
vim.keymap.set("n", "<leader>a", function() harpoon:list():add() end)
vim.keymap.set("n", "<C-e>", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)
vim.keymap.set("n", "<C-p>", function() harpoon:list():prev() end)
vim.keymap.set("n", "<C-n>", function() harpoon:list():next() end)
end
}

6
lua/plugins/oneliner.lua Normal file
View File

@@ -0,0 +1,6 @@
return {
{
'tpope/vim-fugitive',
},
}

View File

@@ -8,7 +8,7 @@ return {
"bash", "bibtex", "c", "css", "fish", "go",
"java", "rust", "lua", "vim", "python", "cpp",
"markdown", "markdown-inline","html", "yaml", "latex" },
auto_install = true,
auto_install = false,
highlight = { enable = true },
indent = { enable = true },
autotag = { enable = true },