aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/keymap.lua
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-11-29 11:55:19 -0500
committerJP Appel <jeanpierre.appel01@gmail.com>2024-11-29 11:55:19 -0500
commit574a5fad3e7012f9fdb36f59798b72888384602b (patch)
treec22b6f928c304d02984b8cc37f58c658a3356647 /nvim/lua/keymap.lua
parent61074462137fea701182c79fb51265668c6d2f51 (diff)
Change nest colorscheme
Diffstat (limited to 'nvim/lua/keymap.lua')
-rw-r--r--nvim/lua/keymap.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/keymap.lua b/nvim/lua/keymap.lua
index a366613..4ad1bc6 100644
--- a/nvim/lua/keymap.lua
+++ b/nvim/lua/keymap.lua
@@ -99,7 +99,7 @@ vim.keymap.set('v', "K", function()
vert_shift_selection(-1)
end, { noremap = true, desc = "shift visual selection up" })
-vim.keymap.set('n', "<Leader>k", function() vim.cmd("make") end)
+vim.keymap.set('n', "<Leader>k", "<cmd>make<cr>")
vim.keymap.set('t', "<ESC><ESC>", "<c-\\><c-n>")
return M