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", {})