I need to go back and re-watch those videos myself. A couple questions:
Are you using the preinstalled vim.tiny or have you installed the full version of vim? (http://youtu.be/ReTvvIPmS34)
What specific commands are you attempting to use?
Have you installed any plugins or done any dotfile configuration?
ubuntu@devel:~$ dpkg -l vim
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============-============-============-=================================
ii vim 2:7.4.052-1u amd64 Vi IMproved - enhanced vi editor
I am trying to indent an un indented ruby file by using ‘==’ command on each line. The lines are not getting indented as shown in the tutorial.
I have not installed any plugins or dot file.
In fact I didn’t find any tutorial or instructions in the course to setup vim.
If you want syntax highlighting and indentation, here are the minimal commands you’ll need in your .vimrc:
" Allow extensions made to Vi by Vim
set nocompatible
" Use syntax-based color highlighting
syntax on
" Enable plugins based on file type, including indentation
filetype plugin indent on