Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dotenv.nanorc - github.com/serialhex/nano-highlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dff22f6f4b11a2163c88532bea96beb90f43d439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Supports `.env` files
syntax "dotenv" "\/\.env(\.old|\.bak|.example|~)?$"

## Keys
color cyan "^\s*[A-Z0-9_]+"

## Values
color brightyellow "=.*$"
color ,red "[\'\"].*$"
color brightwhite "[\'\"].*[\'\"]$"

## Equal sign
color green "="

## Booleans
color brightmagenta "(TRUE|true|FALSE|false)\s*($|;)"

## Comments
color brightyellow ";.*$"

## Spaces in front of tabs.
color ,red " +  +"