mirror of
https://github.com/scopatz/nanorc.git
synced 2024-10-18 02:06:40 -07:00
Added Dockerfile syntax abilities.
This commit is contained in:
parent
be2e3286f3
commit
d7915db91b
2 changed files with 27 additions and 0 deletions
26
Dockerfile.nanorc
Normal file
26
Dockerfile.nanorc
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
## Syntax highlighting for Dockerfiles
|
||||
syntax "Dockerfile" "Dockerfile[^/]*$"
|
||||
|
||||
## Keywords
|
||||
icolor red "^(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD)[[:space:]]"
|
||||
|
||||
## Brackets & parenthesis
|
||||
color brightgreen "(\(|\)|\[|\])"
|
||||
|
||||
## Double ampersand
|
||||
color brightmagenta "&&"
|
||||
|
||||
## Comments
|
||||
icolor cyan "^[[:space:]]*#.*$"
|
||||
|
||||
## Blank space at EOL
|
||||
color ,green "[[:space:]]+$"
|
||||
|
||||
## Strings, single-quoted
|
||||
color brightwhite "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!"
|
||||
|
||||
## Strings, double-quoted
|
||||
color brightwhite ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!"
|
||||
|
||||
## Single and double quotes
|
||||
color brightyellow "('|\")"
|
||||
1
nanorc
1
nanorc
|
|
@ -12,6 +12,7 @@ include ~/.nano/css.nanorc
|
|||
include ~/.nano/cython.nanorc
|
||||
include ~/.nano/dot.nanorc
|
||||
include ~/.nano/email.nanorc
|
||||
include ~/.nano/Dockerfile.nanorc
|
||||
include ~/.nano/fish.nanorc
|
||||
include ~/.nano/fortran.nanorc
|
||||
include ~/.nano/gentoo.nanorc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue