Mercurial > repos > other > linux
comparison nanorc.d/zsh.nanorc @ 84:b989099cde9f
Start to update Nano colourisation
Defaults are REALLY basic
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 31 Mar 2018 21:06:21 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
83:966d8f8f89d0 | 84:b989099cde9f |
---|---|
1 ## Syntax highlighting for ZSH scripts (initially copied from sh.nanorc) | |
2 syntax "ZSH" "\.zsh$" "\.?(zshenv|zprofile|zshrc|zlogin|zlogout|zsh-theme)$" | |
3 header "^#!.*/(env +)?zsh( |$)" | |
4 | |
5 ## Numbers | |
6 color brightyellow "\b[0-9]+\b" | |
7 | |
8 ## Conditionals and control flow | |
9 color green "\<(always|break|bye|case|continue|disown|do|done|elif|else|esac|exit|fi|for|function|if|in|local|read|return|select|shift|then|time|until|while)\>" | |
10 | |
11 color green "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)" | |
12 ## Conditional flags | |
13 color green "-[Ldefgruwx]\>" | |
14 color green "-(eq|ne|gt|lt|ge|le|s|n|z)\>" | |
15 | |
16 ## Bash-inherited | |
17 color brightblue "\<((un)?alias|bindkey|builtin|cd|command|declare|eval|exec|export|jobs|let|popd|pushd|set|source|typeset|umask|unset)\>" | |
18 ## ZSH-specific | |
19 color brightblue "\<(add-zsh-hook|autoload|cdr|chdir|compinit|dirs|(dis|en)able|echotc|echoti|emulate|print|printf|prompt(init)?|(un)?setopt|zle|zmodload|zstyle|whence|zargs|zmv)\>" | |
20 | |
21 ## Common linux commands | |
22 color brightmagenta "\<((g|ig)?awk|find|diff|\w{0,4}grep|kill|killall|\w{0,4}less|make|pkill|sed|sudo|tar)\>" | |
23 | |
24 ## Coreutils commands | |
25 color brightmagenta "\<(base(32|64)|basename|cat|chcon|chgrp|chmod|chown|chroot|cksum|comm|cp|csplit|cut|date|dd|df|dir|dircolors|dirname|du|echo|env|expand|expr|factor|false|fmt|fold|head|hostid|id|install|join|link|ln|logname|ls|md5sum|mkdir|mkfifo|mknod|mktemp|mv|nice|nl|nohup|nproc|numfmt|od|paste|pathchk|pinky|pr|printenv|ptx|pwd|readlink|realpath|rm|rmdir|runcon|seq|(sha1|sha224|sha256|sha384|sha512)sum|shred|shuf|sleep|sort|split|stat|stdbuf|stty|sum|sync|tac|tail|tee|test|timeout|touch|tr|true|truncate|tsort|tty|uname|unexpand|uniq|unlink|users|vdir|wc|who|whoami|yes)\>" | |
26 | |
27 ## Function definition | |
28 icolor brightgreen "^\s+(function\s+)[0-9A-Z_]+\s+\(\)" | |
29 | |
30 ## Variables | |
31 icolor brightred "\$\{?[0-9A-Z_!@#$*?-]+\}?" | |
32 | |
33 ## Strings | |
34 color yellow ""(\\.|[^"])*"" | |
35 color yellow "'(\\.|[^'])*'" | |
36 | |
37 ## Comments | |
38 color cyan "(^|[[:space:]])#.*$" | |
39 color brightcyan "(^|[[:space:]])##.*$" | |
40 | |
41 ## Trailing spaces | |
42 color ,green "[[:space:]]+$" |