Add make key binding

This commit is contained in:
ViViDboarder 2021-09-18 16:39:56 -07:00
parent 453a25f5da
commit bdf4a23491
1 changed files with 3 additions and 0 deletions

View File

@ -61,3 +61,6 @@ map("i", "<C-Space>", "v:lua.complete_space()", {expr = true})
vim.cmd "command Spell setlocal spell! spelllang=en_us"
-- Pop spelling completion for word under cursor
map("n", "<leader>s", "viw<esc>a<c-x>s", {})
-- Build on F5
map("n", "<F5>", ":make<CR>", {})