Skip to content

Commit

Permalink
Improve Elixir syntax highlight
Browse files Browse the repository at this point in the history
This commit adds highlight to:

* elixir variable (@SPEC, @doc, @something, etc...)
* elixir pseudo variable (__MODULE__, __CALLER__, etc...)
* changes booleans colors
  • Loading branch information
feliperenan committed Nov 11, 2020
1 parent 5c4f860 commit c5baaab
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions colors/nord.vim
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,12 @@ hi! link diffRemoved DiffDelete

call s:hi("elixirModuleDeclaration", s:nord7_gui, "", s:nord7_term, "", "", "")
call s:hi("elixirAlias", s:nord7_gui, "", s:nord7_term, "", "", "")
call s:hi("elixirOperator", s:nord7_gui, "", s:nord7_term, "", "", "")
call s:hi("elixirVariable", s:nord6_gui, "", s:nord6_term, "", s:bold, "")
call s:hi("elixirAtom", s:nord6_gui, "", s:nord6_term, "", s:bold, "")
call s:hi("elixirPseudoVariable", s:nord11_gui, "", s:nord11_term, "", "", "")
call s:hi("elixirTodo", s:nord3_gui_bright, "", s:nord3_term, "", "", "")
call s:hi("elixirBoolean", s:nord15_gui, "", s:nord15_term, "", "", "")

call s:hi("gitconfigVariable", s:nord7_gui, "", s:nord7_term, "", "", "")

Expand Down

0 comments on commit c5baaab

Please sign in to comment.