Skip to content

Commit

Permalink
Merge branch 'main' of github.com:jmbuhr/quarto-nvim-kickstarter
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Apr 7, 2024
2 parents 486de9c + 896c7b9 commit 8c5eefc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lua/config/keymap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,10 @@ wk.register({
['<m-i>'] = { insert_r_chunk, 'r code chunk' },
['<cm-i>'] = { insert_py_chunk, 'python code chunk' },
['<m-I>'] = { insert_py_chunk, 'python code chunk' },
[']q'] = { ':silent cnext<cr>', 'quickfix next' },
['[q'] = { ':silent cprev<cr>', 'quickfix prev' },
['z?'] = { ':setlocal spell!<cr>', 'toggle spellcheck' },
[']q'] = { ':silent cnext<cr>', '[q]uickfix next' },
['[q'] = { ':silent cprev<cr>', '[q]uickfix prev' },
['z?'] = { ':setlocal spell!<cr>', 'toggle [z]pellcheck' },
['zl'] = { ':Telescope spell_suggest<cr>', '[l]ist spelling suggestions' },
}, { mode = 'n', silent = true })

-- visual mode
Expand Down

0 comments on commit 8c5eefc

Please sign in to comment.