dotfiles

My dotfiles.
git clone git://git.ryanmj.xyz/dotfiles.git
Log | Files | Refs | LICENSE

lisp.jsf.in (364B)


      1 # JOE syntax highlight file for LISP
      2 
      3 # Needs lots of work...
      4 
      5 =Idle
      6 =Comment 	green
      7 =String 	cyan
      8 =Escape 	bold cyan
      9 
     10 :idle Idle
     11 	*		idle
     12 	";"		comment		recolor=-1
     13 	"\""		string		recolor=-1
     14 
     15 :comment Comment
     16 	*		comment
     17 	"\n"		idle
     18 
     19 :string String
     20 	*		string
     21 	"\""		idle
     22 	"\\"		string_escape	recolor=-1
     23 
     24 :string_escape Escape
     25 	*		string
     26 	"\n"		string		recolor=-2