Skip to content

Commit c044ff4

Browse files
committed
Use my clojure syntax highlight
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.
1 parent 9ad2f8a commit c044ff4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

vim/vimrc.symlink

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ call plug#begin('~/.vim/plugged')
55
" This is good to make the configurations in this file more simple
66
Plug 'tpope/vim-sensible'
77

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

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

@@ -89,6 +90,9 @@ Plug 'tmux-plugins/vim-tmux-focus-events'
8990
Plug 'brendonrapp/smyck-vim'
9091
Plug 'rafi/awesome-vim-colorschemes'
9192

93+
94+
Plug 'sheerun/vim-polyglot' " Syntax highlight for may languages
95+
9296
call plug#end()
9397

9498
" ============================================================================

0 commit comments

Comments
 (0)