feat: add harpoon
parent
75abeb74f7
commit
34dfe4f69c
9
init.lua
9
init.lua
|
@ -1,13 +1,14 @@
|
||||||
|
require("colorscheme")
|
||||||
require("options")
|
require("options")
|
||||||
require("plugins")
|
require("plugins")
|
||||||
require("config.telescope")
|
|
||||||
require("keymaps")
|
|
||||||
require("lsp")
|
require("lsp")
|
||||||
require("colorscheme")
|
require("config.telescope")
|
||||||
|
require("config.comment")
|
||||||
require("config.mason")
|
require("config.mason")
|
||||||
require("config.nvim-tree")
|
require("config.nvim-tree")
|
||||||
require("config.comment")
|
|
||||||
require("config.themery")
|
require("config.themery")
|
||||||
require("config.theme")
|
require("config.theme")
|
||||||
require("config.lualine")
|
require("config.lualine")
|
||||||
require("config.fterm")
|
require("config.fterm")
|
||||||
|
require("config.harpoon")
|
||||||
|
require("keymaps")
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
"cmp-cmdline": { "branch": "main", "commit": "d250c63aa13ead745e3a40f61fdd3470efde3923" },
|
"cmp-cmdline": { "branch": "main", "commit": "d250c63aa13ead745e3a40f61fdd3470efde3923" },
|
||||||
"cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" },
|
"cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" },
|
||||||
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
|
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
|
||||||
|
"copilot.vim": { "branch": "release", "commit": "49e0348bfb913fae63ca5ddb987a8bccd193da86" },
|
||||||
|
"harpoon": { "branch": "harpoon2", "commit": "da326d0438ac68dee9b6b62a734be940a8bd8405" },
|
||||||
"lazy.nvim": { "branch": "main", "commit": "31ddbea7c10b6920c9077b66c97951ca8682d5c8" },
|
"lazy.nvim": { "branch": "main", "commit": "31ddbea7c10b6920c9077b66c97951ca8682d5c8" },
|
||||||
"lspkind.nvim": { "branch": "master", "commit": "1735dd5a5054c1fb7feaf8e8658dbab925f4f0cf" },
|
"lspkind.nvim": { "branch": "master", "commit": "1735dd5a5054c1fb7feaf8e8658dbab925f4f0cf" },
|
||||||
"lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" },
|
"lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" },
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
require("FTerm").setup({
|
local api = vim.api
|
||||||
|
local fterm = require("FTerm")
|
||||||
|
|
||||||
|
fterm.setup({
|
||||||
blend = 25
|
blend = 25
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Commands
|
||||||
|
api.nvim_create_user_command('FTermToggle', fterm.toggle, { bang = true })
|
||||||
|
api.nvim_create_user_command('FTermClose', fterm.close, { bang = true })
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
local api = vim.api
|
||||||
|
local harpoon = require("harpoon")
|
||||||
|
harpoon.setup({})
|
||||||
|
|
||||||
|
api.nvim_create_user_command('HarpoonAdd', function() harpoon:list():add() end, { bang = true })
|
||||||
|
api.nvim_create_user_command('HarpoonUI', function() harpoon.ui:toggle_quick_menu(harpoon:list()) end, { bang = true })
|
||||||
|
api.nvim_create_user_command('HarpoonTogglePrev', function() harpoon:list():prev() end, { bang = true })
|
||||||
|
api.nvim_create_user_command('HarpoonToggleNext', function() harpoon:list():next() end, { bang = true })
|
|
@ -34,7 +34,10 @@ local mappings = {
|
||||||
["<leader>th"] = "<cmd>Themery<CR>",
|
["<leader>th"] = "<cmd>Themery<CR>",
|
||||||
["<leader>sm"] = ":MaximizerToggle<CR>",
|
["<leader>sm"] = ":MaximizerToggle<CR>",
|
||||||
-- FTerm
|
-- FTerm
|
||||||
["<leader>h"] = "<cmd>FTermToggle<CR>"
|
["<leader>h"] = "<cmd>FTermToggle<CR>",
|
||||||
|
-- Harpoon
|
||||||
|
["<leader>a"] = "<cmd>HarpoonAdd<CR>",
|
||||||
|
["<C-e>"] = "<cmd>HarpoonUI<CR>"
|
||||||
},
|
},
|
||||||
x = {
|
x = {
|
||||||
["<A-j>"] = ":move '>+1<CR>gv-gv",
|
["<A-j>"] = ":move '>+1<CR>gv-gv",
|
||||||
|
|
|
@ -58,5 +58,11 @@ require("lazy").setup({
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||||
},
|
},
|
||||||
'numToStr/FTerm.nvim',
|
'numToStr/FTerm.nvim',
|
||||||
'github/copilot.vim'
|
'github/copilot.vim',
|
||||||
|
"nvim-lua/plenary.nvim",
|
||||||
|
{
|
||||||
|
"ThePrimeagen/harpoon",
|
||||||
|
branch = "harpoon2",
|
||||||
|
requires = { { "nvim-lua/plenary.nvim" } }
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
- telescope x
|
- telescope x
|
||||||
- theming x
|
- theming x
|
||||||
- tabfluline x
|
- tabfluline x
|
||||||
- terminal
|
- rice
|
||||||
|
- terminal x
|
||||||
- harpoon
|
- harpoon
|
||||||
- extended history
|
- extended history x
|
||||||
|
- auto-pairs
|
||||||
|
- lua vim linting
|
||||||
|
|
Loading…
Reference in New Issue