aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/keymap.lua
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-05-11 00:55:28 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-05-11 00:55:28 -0400
commitb5e5f39840978d34b01a4457765c0f6a9cbdb9db (patch)
tree659d22392c30e50857f3a882c19e283d1e8236d4 /nvim/lua/keymap.lua
parentaa3a0e772d10d2f03aa4563ce75fd2d13e19f283 (diff)
add make keybind
Diffstat (limited to 'nvim/lua/keymap.lua')
-rw-r--r--nvim/lua/keymap.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/nvim/lua/keymap.lua b/nvim/lua/keymap.lua
index bc1740e..e28c003 100644
--- a/nvim/lua/keymap.lua
+++ b/nvim/lua/keymap.lua
@@ -30,8 +30,13 @@ M.nnoremap("<Leader>l", function()
vim.api.nvim_err_writeln(err_msg)
end
end)
+
M.nnoremap("<leader>ef", function()
vim.cmd('Lexplore')
end)
+M.nnoremap("<Leader>k", function()
+ vim.cmd("make")
+end)
+
return M