This is the first push to this repo with my dotfiles
[dotfilesold/.git] / .nano / gradle.nanorc
1 syntax "groovy" "\.(groovy|gradle)$"
2
3 # Keywords
4 color brightblue "\<(boolean|byte|char|double|enum|float|int|long|new|short|super|this|transient)\>"
5 color brightblue "\<(as|assert|break|case|catch|continue|default|do|else|finally|for|goto|if|in|return|switch|throw|try|while)\>"
6 color brightblue "\<(abstract|class|extends|implements|import|interface|native|package|private|protected|public|static|strictfp|synchronized|throws|trait|void|volatile)\>"
7 color brightblue "\<(const|def|final|instanceof)\>"
8 color brightblue "\<(true|false|null)\>"
9
10 # Strings
11 color brightyellow ""(\\.|[^"])*"" "'(\\.|[^'])*'"
12
13 # Interpolation
14 icolor yellow "\$\{[^\}]*}"
15
16 # Comments
17 color cyan "^//.*"
18 color cyan "\s//.*"
19 color cyan start="^/\*(\*)?" end="\*/"
20 color cyan start="\s/\*(\*)?" end="\*/"
21
22 # Trailing whitespace
23 color ,green "[[:space:]]+$"