mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
feat: added neovim configuration
This commit is contained in:
10
lua/absolute/after/harpoon.lua
Normal file
10
lua/absolute/after/harpoon.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
local mark = require("harpoon.mark")
|
||||
local ui = require("harpoon.ui")
|
||||
|
||||
vim.keymap.set("n", "<leader>a", mark.add_file)
|
||||
vim.keymap.set("n", "<C-e>", ui.toggle_quick_menu)
|
||||
|
||||
vim.keymap.set("n", "<C-1>", function() ui.nav_file(1) end)
|
||||
vim.keymap.set("n", "<C-2>", function() ui.nav_file(2) end)
|
||||
vim.keymap.set("n", "<C-3>", function() ui.nav_file(3) end)
|
||||
vim.keymap.set("n", "<C-4>", function() ui.nav_file(4) end)
|
||||
Reference in New Issue
Block a user