Skip to content

Commit

Permalink
Clojure support
Browse files Browse the repository at this point in the history
  • Loading branch information
morhetz authored and Splinter1984 committed Nov 2, 2023
1 parent b0cab64 commit c14bb18
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions colors/gruvbox.vim
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,34 @@ endif
"hi! def link vimFunc Function
"hi! def link vimUserFunc Function

" }}}
" Clojure: {{{
call s:HL('clojureKeyword', 'blue')
call s:HL('clojureCond', 'orange')
call s:HL('clojureSpecial', 'orange')
call s:HL('clojureDefine', 'orange')

call s:HL('clojureFunc', 'yellow')
call s:HL('clojureRepeat', 'yellow')
call s:HL('clojureCharacter', 'aqua')
call s:HL('clojureStringEscape', 'aqua')
call s:HL('clojureException', 'red')

call s:HL('clojureRegexp', 'aqua')
call s:HL('clojureRegexpEscape', 'aqua')
call s:HL('clojureRegexpCharClass', 'light3', 'none', 'bold')
call s:HL('clojureRegexpMod', 'light3', 'none', 'bold')
call s:HL('clojureRegexpQuantifier', 'light3', 'none', 'bold')

call s:HL('clojureParen', 'light3')
call s:HL('clojureAnonArg', 'yellow')
call s:HL('clojureVariable', 'blue')
call s:HL('clojureMacro', 'orange')

call s:HL('clojureMeta', 'yellow')
call s:HL('clojureDeref', 'yellow')
call s:HL('clojureQuote', 'yellow')
call s:HL('clojureUnquote', 'yellow')
" }}}

" Functions -------------------------------------------------------------------
Expand Down

0 comments on commit c14bb18

Please # to comment.