Dot_Files/.config/nano/syntax/sls.nanorc
Price Hiller f7568438ef [ Nano ] Added nano dot files and relevant syntax files
In the horrible scenario in which neovim or vim are not available on a
system I use (and yeah, I found one recently wtf), nano is a simple
alternative that gets the job done... these files are for my comfort IN
nano but not optimal. 😞
2022-01-21 05:34:52 -06:00

30 lines
619 B
Plaintext

## SaltStack files (*.sls)
##
syntax "Salt" "\.sls$"
# Anything ending in a colon (:), including things that start with a dash (-)
color blue "^[^ -].*:$"
color blue ".*:"
# Except for salt:// URLs
color white "salt:"
# Numbers, etc
color red "/*[0-9]/*"
color red "\<(True|False)\>"
# Anything between two single quotes
color green ""(\\.|[^"])*"|'(\\.|[^'])*'"
# Matching keywords
color yellow "\<(grain|grains|compound|pcre|grain_pcre|list|pillar)\>"
# Comments
color brightblack "^#.*"
# Logic keywords
color magenta "\<(if|elif|else|or|not|and|endif|end)\>"
## Trailing spaces
color ,green "[[:space:]]+$"