-
Archives
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
-
Meta
Tag Archives: vim
Using MacVim as your git mergetool
Install MacVim and the command line tool, mvim. Then in your ~/.gitconfig add this, thusly (replacing the path to mvim with the correct one): [merge] tool = mvim[mergetool “mvim”] cmd=/Users/tjweir/bin/mvim -d -g $LOCAL $MERGED $REMOTE keepbackup=false Then you can “git … Continue reading
Vim Tips: window splits
I use Vim for pretty much everything on every machine I use. Using Vim requires constant learning of all the commands. Sometimes commands that I use get pushed out of my head by newer commands. Such is the case with … Continue reading
Liftweb + ctags + vim
[Updated: 2008/12/10] This is how I set up /Lift/, ctags, and vim (on OS X and Ubuntu): Add some scala definition to ctags: ty@Astra:~$ cat /home/ty/.ctags –langdef=scala –langmap=scala:.scala –regex-scala=/^[ \t]*class[ \t]+([a-zA-Z0-9_]+)/\1/c,classes/ –regex-scala=/^[ \t]*trait[ \t]+([a-zA-Z0-9_]+)/\1/t,traits/ –regex-scala=/^[ \t]*type[ \t]+([a-zA-Z0-9_]+)/\1/T,types/ –regex-scala=/^[ \t]*def[ \t]+([a-zA-Z0-9_\?]+)/\1/m,methods/ … Continue reading
Presentation on Vim
Vim has been my editor of choice for a long time and I try to expand my knowledge of commands all the time. I was particularly impressed with “Vim for PHP Programmers” by Andrei Zmievski. It’s well worth a read … Continue reading
Vim blogging plugin
I’ve switched to vimpress as my blogging utility. I like it more than the web interface of wordpress. Plus is one more thing that I can do from the comfort of Vim. Beautiful vim.
Taskpaper and Vim.
Taskpaper is for “…Mac users who want a simpler way to stay organized and get things done. TaskPaper is a simple to-do list that’s surprisingly adept. Unlike the competition, TaskPaper’s text based interface is focused on paper-like simplicity.” It’s cool, … Continue reading