commit cc9ae8020473ad0dfd29ea7d8c09b096d71a0023 parent 7bf941de2c8f2ee2d301eac60a213fdca52e7078 Author: Bharatvaj <bharatvaj@yahoo.com> Date: Thu, 2 Dec 2021 01:56:12 +0530 Use ww for saving in vim and add emmet-vim plugin Diffstat:
M | .config/vim/keybindings/keybindings.vim | | | 2 | +- |
M | .config/vim/plugin/development.vim | | | 1 | + |
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.config/vim/keybindings/keybindings.vim b/.config/vim/keybindings/keybindings.vim @@ -15,7 +15,7 @@ nnoremap <Leader>s :split<enter> " Quick save and write nnoremap <leader>wq :wq<cr> -nnoremap <leader>w :w<cr> +nnoremap <leader>ww :w<cr> nnoremap <leader>q :q<cr> " Plugin keybindings diff --git a/.config/vim/plugin/development.vim b/.config/vim/plugin/development.vim @@ -5,3 +5,4 @@ if has('nvim') endif Plug 'vim-syntastic/syntastic' Plug 'rust-lang/rust.vim' +Plug 'mattn/emmet-vim'