reorder options and keymaps in init.lua

This commit is contained in:
wooshdude
2025-04-18 22:26:55 -07:00
parent 4a36d0ad19
commit 5e3e1fb15a
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
require("config.keymap")
require("config.options") require("config.options")
require("config.keymap")
require("config.run") require("config.run")
require("plugins") require("plugins")
+3
View File
@@ -33,6 +33,9 @@ vim.keymap.set("n", "<C-a>", "$", { desc = "Jump to end of line", silent = true
-- Telescope -- Telescope
vim.keymap.set("n", "<leader>ff", ":Telescope find_files<Return>", { desc = "Find Files", silent = true }) vim.keymap.set("n", "<leader>ff", ":Telescope find_files<Return>", { desc = "Find Files", silent = true })
-- Ex
vim.keymap.set("n", "<leader>pf", vim.cmd.Ex, { desc = "Open Newr", silent = true })
-- See `:help wincmd` for a list of all window commands -- See `:help wincmd` for a list of all window commands
vim.keymap.set("n", "<C-h>", "<C-w><C-h>", { desc = "Move focus to the left window", silent = true }) vim.keymap.set("n", "<C-h>", "<C-w><C-h>", { desc = "Move focus to the left window", silent = true })
vim.keymap.set("n", "<C-l>", "<C-w><C-l>", { desc = "Move focus to the right window", silent = true }) vim.keymap.set("n", "<C-l>", "<C-w><C-l>", { desc = "Move focus to the right window", silent = true })