It is a complete redo of the vim/nvim experience. It's neovim with lua everything While this was configured this way with a local computer in mind it should be easy to set up and use on a remote machine. Known Issues: * Fuzzy finder (this is down to me not having understood properly) * Harpoon adding paths (again me) * Need to review the `set.lua` and `remap.lua` for a more uniform approach in nomenclature. This should see more updates. Reviewed-on: #1
10 lines
363 B
Lua
10 lines
363 B
Lua
local mark = require("harpoon.mark")
|
|
local ui = require("harpoon.ui")
|
|
|
|
vim.keymap.set("n", "<C-e>", ui.toggle_quick_menu)
|
|
|
|
vim.keymap.set("n", "<C-h>", function() ui.nav_file(1) end)
|
|
vim.keymap.set("n", "<C-t>", function() ui.nav_file(2) end)
|
|
vim.keymap.set("n", "<C-n>", function() ui.nav_file(3) end)
|
|
vim.keymap.set("n", "<C-s>", function() ui.nav_file(4) end)
|