harpoon
This commit is contained in:
15
lua/plugins/harpoon.lua
Normal file
15
lua/plugins/harpoon.lua
Normal 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
6
lua/plugins/oneliner.lua
Normal file
@@ -0,0 +1,6 @@
|
||||
return {
|
||||
{
|
||||
'tpope/vim-fugitive',
|
||||
},
|
||||
|
||||
}
|
||||
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user