Add remap to open vim terminal

This commit is contained in:
flyingscorpio@arch-desktop 2021-01-02 23:18:36 +01:00
parent dc8cf2f48a
commit 359f05727a

View file

@ -23,6 +23,13 @@ nmap <leader>p "*p
" run make
nmap <leader>m :w<CR>:!make<CR>
" open terminal in split window
if has('nvim')
nmap <leader>t :below 10split<CR>:terminal<CR>i
else
nmap <leader>t :below terminal ++rows=10<CR>
endif
" }}}
" VIM-PLUG {{{
call plug#begin('~/.vim/plugged')