1

Move nvim-only keybinds to correct config

This commit is contained in:
Evan Pratten 2023-11-22 10:16:42 -05:00
parent 27466fa20e
commit cfcdd908b6
2 changed files with 5 additions and 5 deletions

View File

@ -30,6 +30,11 @@ endif
" Enable Leap
lua require('leap').add_default_mappings()
" VSCode-style comment toggling
nnoremap <C-_> :Commentary<CR>
vnoremap <C-_> :Commentary<CR>
inoremap <C-_> <C-O>:Commentary<CR>
" Custom functions
function! MkdirAndWrite()
let dir = expand('%:p:h')

View File

@ -27,11 +27,6 @@ inoremap <C-BS> <C-W>
inoremap <C-Del> <Esc>lcw
nnoremap <C-Del> cw<Esc>l
" VSCode-style comment toggling
nnoremap <C-_> :Commentary<CR>
vnoremap <C-_> :Commentary<CR>
inoremap <C-_> <C-O>:Commentary<CR>
" Force VIM to use system clipboard
set clipboard=unnamedplus