-
Website
http://www.tech-recipes.com/ -
Original page
http://www.tech-recipes.com/rx/402/show-line-numbers-in-vi-or-vim/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
davak
83 comments · 1 points
-
Web Design
3 comments · 1 points
-
danishbacker
9 comments · 1 points
-
flexinfo
11 comments · 1 points
-
Tonychelle
4 comments · 1 points
-
-
Popular Threads
-
Facebook: How To Get Only Status Updates on Your FB Home Page
1 week ago · 4 comments
-
Firefox: Enable Case Sensitive Searches When Using Find (Ctrl+F)
5 days ago · 1 comment
-
Firefox 3.6: Enable Visual Previews When Using Ctrl+Tab (Windows Only)
6 days ago · 1 comment
-
Windows 7: How To Disable Live Preview for Taskbar Thumbnails
2 weeks ago · 2 comments
-
Gmail: How to block a sender from your inbox
3 weeks ago · 3 comments
-
Facebook: How To Get Only Status Updates on Your FB Home Page
:set number
to the file .vimrc in your home directory.
Sometime when you get bored, type :set all while in vim.. it'll show you all the available options. Chances are if there's some behavior you don't like in vim, you can tweak it.
set number
~/.vimrc
Here's what I did:
Edit ~/.vimrc
add these lines:
nnoremap <silent> <F6> :set number<CR>
nnoremap <silent> <S-F6> :set nonumber<CR>
Now, F6 turns line numbers on, Shift F6 turns them off.
nnoremap <silent> <F6> :set number!<CR>