📝 Added more nvim notes and bookmarked reference

This commit is contained in:
z3rOR0ne 2022-12-02 22:17:23 -08:00
parent 9ea6087905
commit 5586b7d22f
7 changed files with 61 additions and 4 deletions

View file

@ -79,6 +79,9 @@ vim.cmd[[noremap <silent> <expr> k (v:count == 0 ? 'gk' : 'k')]]
vim.cmd[[nnoremap <silent> <F11> :set spell!<cr>]]
vim.cmd[[inoremap <silent> <F11> <C-O>:set spell!<cr>]]
-- prevents opening files with nv causing vim to hang
vim.cmd[[nnoremap gX :silent :execute "!xdg-open" expand('%:p:h') . "/" . expand("<cfile") " &"<cr>]]
-- lab.nvim keybindings
vim.cmd[[nnoremap <F4> :Lab code stop<CR>]]
vim.cmd[[nnoremap <F5> :Lab code run<CR>]]