Skip to content

Commit

Permalink
Use my clojure syntax highlight
Browse files Browse the repository at this point in the history
Avoid issue described by this PR
guns/vim-clojure-static#52

Add forked repository with the fix proposed in the PR.
Move vim-polyglot to the end of Plugs to prioritize highlighting that
are declared before.
  • Loading branch information
lucasalencar committed Jan 21, 2019
1 parent 9ad2f8a commit c044ff4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion vim/vimrc.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ call plug#begin('~/.vim/plugged')
" This is good to make the configurations in this file more simple
Plug 'tpope/vim-sensible'

Plug 'sheerun/vim-polyglot' " Syntax highlight for may languages
Plug 'itchyny/lightline.vim' " Minimalist status line
Plug 'ap/vim-css-color' " Show color when writing HEX colors
Plug 'tpope/vim-eunuch' " Vim commands for the bash (Mkdir, Move, Rename, ...)
Expand Down Expand Up @@ -61,6 +60,8 @@ Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
Plug 'tpope/vim-salve', { 'for': 'clojure' }
Plug 'tpope/vim-projectionist' " Allows to map projections to the project (dependency to vim-salve)

" Static syntax highlight for clojure
Plug 'lucasalencar/vim-clojure-static', { 'for': 'clojure' }
" Turns syntax highlight dynamic, allows to highlight project defined functions
Plug 'guns/vim-clojure-highlight', { 'for': 'clojure' }

Expand Down Expand Up @@ -89,6 +90,9 @@ Plug 'tmux-plugins/vim-tmux-focus-events'
Plug 'brendonrapp/smyck-vim'
Plug 'rafi/awesome-vim-colorschemes'


Plug 'sheerun/vim-polyglot' " Syntax highlight for may languages

call plug#end()

" ============================================================================
Expand Down

0 comments on commit c044ff4

Please sign in to comment.