export TERM=xterm-256color fixed it for me. I've never heard of this before. Why isn't it on by default?/solarize should put it in your palette. You'll then have to put the colors right in the color dialog (click on the crayons icon in the toolbar or press Alt-K):alias solarize {
%colornumber = 0
%i = 1
while (%i != 17) {
color %colornumber $solarcolor(%i)
%i = %i + 1
%colornumber = %colornumber + 1
}
}
alias solarcolor {
var %colorvalues = 002b36,073642,586e75,657b83,839496,93a1a1,eee8d5,fdf6e3,b58900,cb4b16,dc322f,d33682,6c71c4,268bd2,2aa198,859900
var %hexvalue = $gettok(%colorvalues,$1,44)
return $base(%hexvalue,16,10)
}
(The != 17 is a kludge; it'll work, but it should be <= 16; mefi and <pre> don't play nice together.alias solarize {
var %colornumber = 0
var %i = 1
while (%i != 17) {
color %colornumber $solarcolor(%i)
%i = %i + 1
%colornumber = %colornumber + 1
}
}
So that the variables don't clash. It's mIRC scripting tho, so one shouldn't complain too much about kludges.alias solarcolor {
var %colorvalues = 362b00,423607,756e58,837b65,969483,a1a193,d5e8ee,e3f6fd,0089b5,164bcb,2f32dc,8236d3,c4716c,d28b26,98a12a,009985
var %hexvalue = $gettok(%colorvalues,$1,44)
return $base(%hexvalue,16,10)
};;; 1. Install the color-theme package ;;; (http://www.emacswiki.org/cgi-bin/wiki/ColorTheme) ;;; 2. Load this file ;;; 3. M-x color-theme-solarized-[dark|light]So I just did:
(load-file "/path/to/my/copy") (color-theme-solarized-light)
« Older All of the media consumed by Steven Soderbergh in ... | Shaun of the Dead in 30 Second... Newer »
This thread has been archived and is closed to new comments
posted by ShutterBun at 7:13 PM on April 13, 2011 [1 favorite]