Joined December 2012
·
Posted to
WTFJS abstraction
over 1 year
ago
wtf =)
Posted to
Great vim plugins + links
over 1 year
ago
Zen Coding is really great. It speeds up the writing of markup dramatically.
Please note that it was recently renamed to emmet, so eventually this is what you will need to look for.
I used to have pathogen. It's tedious to update submodules to current version.(vundle does it automatically)
Then I wrote install script that does everything vim-config.
You basically copy and paste this to bash:
curl -L https://raw.github.com/gorodinskiy/vim-settings/master/install.sh|bash
Same with my dotfiles
Posted to
Great vim plugins + links
over 1 year
ago
vundle is actually better than pathogen.
As for plugins:
vim-css-color.git to show color when editing css
Posted to
Get rid of search highlighting with return
over 1 year
ago
I think more elegant way is to set it on cursor hold.
autocmd cursorhold * set nohlsearch
Achievements
171 Karma
9,735 Total ProTip Views
Kona
Have at least one original repo where CoffeeScript is the dominant language
Forked
Have a project valued enough to be forked by someone else
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Charity
Fork and commit to someone's open source project in need
Raven
Have at least one original repo where some form of shell script is the dominant language
Works in linux too.
process.env['USERPROFILE']
would do the same in windows.