Skip to content

Instantly share code, notes, and snippets.

@ar-to
Created October 6, 2017 08:12
Show Gist options
  • Save ar-to/c779406eb1ccd89a3cf135e47a1ea949 to your computer and use it in GitHub Desktop.
Save ar-to/c779406eb1ccd89a3cf135e47a1ea949 to your computer and use it in GitHub Desktop.
This file goes step by step for setting up a vim IDE environment on Mac
Install Vundle
Visit source site: https://github.com/VundleVim/Vundle.vim
run:
$ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
$ touch ~/.vimrc
$ vim ~/.vimrc
paste vimrc data or create your own: https://gist.github.com/ar-to/529f57a41a6dda7a875b0af97c72e387
install plugins with Vundle:
$ vim
:PluginsInstall
:bd #exit from buffer(current window)
:q #exit vim
Basic Navigation:
i — enables insert mode to add text
Shift+(arrow keys) - moves between words
Ctrl+C — to exit Insert mode
h - left
k - up
l - right
j - down
: - enters command mode in vim
Find plugins at:
https://vimawesome.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment