dotfiles

Cross platform dotfiles for linux, mac and windows

commit 342fe11bfeb56711d6e6b9c58e8e6c862e913ab7
parent 792362ed7e8329615a3234c672ce0b40d33bb14a
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
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'