From aa49de9246b85b75fab41d4f03fdce25e4ca4026 Mon Sep 17 00:00:00 2001 From: Sebastian Burschel Date: Sat, 18 Sep 2021 14:29:06 +0200 Subject: [PATCH] Added linter options Added CSS color highliting plugin --- dotfiles/.vimrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc index a63fa20..d40a054 100644 --- a/dotfiles/.vimrc +++ b/dotfiles/.vimrc @@ -51,6 +51,9 @@ Plug 'junegunn/vim-peekaboo' " The package manager itself. Plug 'junegunn/vim-plug' +" Shows the color in css files +Plug 'ap/vim-css-color' + " Add swift support Plug 'keith/swift.vim' @@ -304,7 +307,7 @@ let g:ale_fixers = {'python': ['isort', 'black'], \'htmldjango': ['html-beautify'], \'xml': ['xmllint'], \'java': ['uncrustify'], - \'javascript': ['prettier', 'xo', 'standard', 'eslint'], + \'javascript': ['eslint', 'prettier', 'xo', 'standard'], \'tex': ['latexindent']}