File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,13 +57,13 @@ let s:rspec_red = 'FE405F'
57
57
let s:git_orange = 'F54D27'
58
58
59
59
let g:NERDTreeExtensionHighlightColor = {} " this line is needed to avoid error
60
- let g:NERDTreeExtensionHighlightColor['css'] = s:blue " sets the color of . css files to blue
60
+ let g:NERDTreeExtensionHighlightColor['css'] = s:blue " sets the color of css files to blue
61
61
62
62
let g:NERDTreeExactMatchHighlightColor = {} " this line is needed to avoid error
63
- let g:NERDTreeExactMatchHighlightColor['.gitignore'] = s:git_orange
63
+ let g:NERDTreeExactMatchHighlightColor['.gitignore'] = s:git_orange " sets the color for .gitignore files
64
64
65
65
let g:NERDTreePatternMatchHighlightColor = {} " this line is needed to avoid error
66
- let g:NERDTreePatternMatchHighlightColor['.*_spec.rb'] = s:rspec_red
66
+ let g:NERDTreePatternMatchHighlightColor['.*_spec.rb'] = s:rspec_red " sets the color files ending with _spec.rb
67
67
68
68
```
69
69
You can’t perform that action at this time.
0 commit comments