mirror of
https://github.com/eRgo35/neovim.git
synced 2026-02-04 05:46:10 +01:00
feat: bumped configs
This commit is contained in:
15
lua-old/mappings.lua
Normal file
15
lua-old/mappings.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
require "nvchad.mappings"
|
||||
|
||||
-- add yours here
|
||||
|
||||
local map = vim.keymap.set
|
||||
|
||||
map("n", ";", ":", { desc = "CMD enter command mode" })
|
||||
map("i", "jk", "<ESC>")
|
||||
|
||||
map("n", "<C-h>", "<cmd>TmuxNavigateLeft<CR>", { desc = "window left" })
|
||||
map("n", "<C-l>", "<cmd>TmuxNavigateRight<CR>", { desc = "window up" })
|
||||
map("n", "<C-j>", "<cmd>TmuxNavigateDown<CR>", { desc = "window up" })
|
||||
map("n", "<C-k>", "<cmd>TmuxNavigateUp<CR>", { desc = "window up" })
|
||||
|
||||
-- map({ "n", "i", "v" }, "<C-s>", "<cmd> w <cr>")
|
||||
Reference in New Issue
Block a user