Making some remaps

This commit is contained in:
2024-02-28 14:47:53 +01:00
parent 76120b6229
commit ebc15bc2b6
3 changed files with 14 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ return {
vim.keymap.set("n", "<C-u>", function() ui.nav_file(1) end)
vim.keymap.set("n", "<C-i>", function() ui.nav_file(2) end)
vim.keymap.set("n", "<C-o>", function() ui.nav_file(3) end)
-- Conflicts with find git files -- vim.keymap.set("n", "<C-p>", function() ui.nav_file(4) end)
vim.keymap.set("n", "<C-p>", function() ui.nav_file(4) end)
end,
dependencies = { "nvim-lua/plenary.nvim" }
},