Skip to content

Instantly share code, notes, and snippets.

@dstebila
Created December 31, 2014 01:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dstebila/e6919202a529eb007d0a to your computer and use it in GitHub Desktop.
Save dstebila/e6919202a529eb007d0a to your computer and use it in GitHub Desktop.
Solarized colours as tcsh shell variables
#!/bin/tcsh
# Solarized colours (http://ethanschoonover.com/solarized) as tcsh shell variables
set solarized_base03 = "%{\033[1;30m%}"
set solarized_base02 = "%{\033[0;30m%}"
set solarized_base01 = "%{\033[1;32m%}"
set solarized_base00 = "%{\033[1;33m%}"
set solarized_base0 = "%{\033[1;34m%}"
set solarized_base1 = "%{\033[1;36m%}"
set solarized_base2 = "%{\033[0;37m%}"
set solarized_base3 = "%{\033[1;37m%}"
set solarized_yellow = "%{\033[0;33m%}"
set solarized_orange = "%{\033[1;31m%}"
set solarized_red = "%{\033[0;31m%}"
set solarized_magenta = "%{\033[0;35m%}"
set solarized_violet = "%{\033[1;35m%}"
set solarized_blue = "%{\033[0;34m%}"
set solarized_cyan = "%{\033[0;36m%}"
set solarized_green = "%{\033[0;32m%}"
# sample shell prompt of the form
# username@host:path > cmd
set prompt="${solarized_red}%n${solarized_base1}@${solarized_green}%m${solarized_base1}:${solarized_blue}%c${solarized_base1} >${solarized_base02} "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment