diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-10-21 21:20:22 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-10-21 21:20:22 -0700 |
commit | 28b6d1656ae63466631d433bb2fe3c28dd0e520c (patch) | |
tree | cdfa629250c7e5ef2c619b9051376638aafaf3c0 /editor | |
parent | 5de772bebd986c2abb3b7c34715f13b07a4f6c2a (diff) | |
download | mu-28b6d1656ae63466631d433bb2fe3c28dd0e520c.tar.gz |
.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/mu.nanorc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/editor/mu.nanorc b/editor/mu.nanorc new file mode 100644 index 00000000..7ec87baa --- /dev/null +++ b/editor/mu.nanorc @@ -0,0 +1,10 @@ +# include this file in your ~/.nanorc + +syntax "mu" "\.mu$" +# tests +color green "\<test-[^ ]*" +# strings literals +color cyan ""([^"\]|\\.)+"" +# comments +comment "#" +color blue "#.*$" |