Last active
August 21, 2022 17:18
-
-
Save maheshj01/e02aeda43892846ad7f4be8e0a57bccc to your computer and use it in GitHub Desktop.
Revisions
-
maheshj01 revised this gist
Aug 21, 2022 . No changes.There are no files selected for viewing
-
maheshj01 revised this gist
Aug 21, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ ### Table of Contents - [Navigation](https://gist.github.com/maheshmnj/e02aeda43892846ad7f4be8e0a57bccc#navigation) - [Install vim plugins](https://gist.github.com/maheshmnj/e02aeda43892846ad7f4be8e0a57bccc#install-vim-plugins) -
maheshj01 revised this gist
Aug 21, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ ### Table of Contents - Navigation - [Install vim plugins](https://gist.github.com/maheshmnj/e02aeda43892846ad7f4be8e0a57bccc#install-vim-plugins) ### Navigation -
maheshj01 created this gist
Aug 21, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,43 @@ ### Table of Contents - Navigation - Install vim plugins ### Navigation h - move cursor left j - move cursor down k - move cursor up l - move cursor right e - jump forwards to the end of a word b - jump backwards to the start of a word 0 - jump to the start of the line $ - jump to the end of the line ### Install vim plugins 1. Install vim-plug so that it auto-loads at launch $ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim 2. Check if ~/.vimrc file exists $ ls -a ~/.vimrc 3. if previous command error file doesn't exist then create and open file in vim $ vim ~/.vimrc #open file in vim 4. Paste following text. Example below install emmet call plug#begin() Plug 'mattn/emmet-vim' call plug#end() 5. Save File using write function :w 6. Run plugin install prompt :PlugInstall