From bdf4a23491315375853f42f1115ea5fcbf3008a0 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Sat, 18 Sep 2021 16:39:56 -0700 Subject: [PATCH] Add make key binding --- neovim/lua/_bindings.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neovim/lua/_bindings.lua b/neovim/lua/_bindings.lua index 3dfa3ac..5ff405f 100644 --- a/neovim/lua/_bindings.lua +++ b/neovim/lua/_bindings.lua @@ -61,3 +61,6 @@ map("i", "", "v:lua.complete_space()", {expr = true}) vim.cmd "command Spell setlocal spell! spelllang=en_us" -- Pop spelling completion for word under cursor map("n", "s", "viwas", {}) + +-- Build on F5 +map("n", "", ":make", {})