diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-05-11 00:55:28 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-05-11 00:55:28 -0400 |
| commit | b5e5f39840978d34b01a4457765c0f6a9cbdb9db (patch) | |
| tree | 659d22392c30e50857f3a882c19e283d1e8236d4 | |
| parent | aa3a0e772d10d2f03aa4563ce75fd2d13e19f283 (diff) | |
add make keybind
| -rw-r--r-- | nvim/lua/keymap.lua | 5 |
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 |
