Sunday January 05, 2003
Adding color to VIM and Cygwin
These are notes-to-self more than anything, but maybe you can use them.
You can add colorized text to Vim by adding the following to .vimrc in your $HOME directory:
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
syntax on
set hlsearch
endi
If you don't have this file, you can create it using :mkv. You can change your font-settings by editing them with Edit >> Select Font and then typing :set guifont, followed by :mkv!. I prefer Courier New, 9pt.
If you want colors for file listings (using ls) in Cygwin, add the following to your .bashrc file in your $HOME directory:
alias ls="ls -CF --color"
Posted in Java at Jan 05 2003, 03:12:08 PM MST 1 Comment
Search This Site
Recent Entries
- New Passport in 9 Days
- EhCache Project Busy this Summer
- Spontaneous Stuff Weekend
- Awesome Birthday Present: A Kegerator
- Maven Plugin for Running Integration Tests against Multiple Containers
- Presenting Web Frameworks of the Future Tomorrow in Denver
- My OSCON Aftermath
- OSCON 2008 Wrapup
- [OSCON 2008] Even Faster Web Sites by Steve Souders
- [OSCON 2008] CSS for High Performance JavaScript UI by Gavin Doughtie
Posted by Steve on June 05, 2008 at 12:18 PM MDT #