Search Results

2
votes

What is your linux/vim cheat sheet?

a blog dedicated to vim where i have found some nice gems http://dailyvim.blogspot.com/ …
6
votes

What is your favorite colorscheme FOR PROGRAMMING in Vim?

I can't believe nobody mentioned desert, the best native dark theme. :colorscheme desert …
2
votes

How do I indent multiple lines quickly in vi?

when you select a block and use > to indent, it indents then goes back to normal mode. I have this in my .vimrc : vnoremap < <gv vnoremap > >gv It let …