]> git.friedersdorff.com Git - max/saltfiles.git/blobdiff - states/vim/files/vimrc
Use ale linter
[max/saltfiles.git] / states / vim / files / vimrc
index 347f93a28608019b1bebd25d28d24daae6b9445c..899f85f16ca3b6c6dd09b4ac717eb9ed6dbb5c38 100644 (file)
@@ -11,7 +11,6 @@ call vundle#begin()
 " call vundle#begin('~/some/path/here')
 Plugin 'gmarik/Vundle.vim'
 Plugin 'Yggdroot/indentLine'
-Plugin 'scrooloose/syntastic'
 Plugin 'docunext/closetag.vim'
 Plugin 'vim-airline/vim-airline'
 Plugin 'vim-airline/vim-airline-themes'
@@ -32,8 +31,10 @@ Plugin 'majutsushi/tagbar'
 Plugin 'altercation/vim-colors-solarized'
 Plugin 'ctrlpvim/ctrlp.vim'
 Plugin 'Chiel92/vim-autoformat'
-Plugin 'python-rope/ropevim'
 Plugin 'pangloss/vim-javascript'
+Plugin 'itspriddle/vim-shellcheck'
+Plugin 'vimwiki/vimwiki'
+Plugin 'dense-analysis/ale'
 
 " All of your Plugins must be added before the following line
 call vundle#end()            " required
@@ -55,28 +56,11 @@ set tabstop=4
 set relativenumber
 set number
 
+let g:ale_linters = {'python': ['flake8']}
+
 let g:html_indent_inctags = "html,body,head,tbody"
 let g:indentLine_color_term = 5
 
-" syntastic
-set statusline+=%#warningmsg#
-set statusline+=%{SyntasticStatuslineFlag()}
-set statusline+=%*
-
-let g:syntastic_always_populate_loc_list = 1
-let g:syntastic_auto_loc_list = 2
-let g:syntastic_check_on_open = 1
-let g:syntastic_check_on_wq = 1
-let g:syntastic_javascript_checkers = ['eslint']
-let g:syntastic_python_python_exec = '/usr/bin/python3'
-let g:syntastic_python_checkers = ['python', 'flake8']
-let g:syntastic_python_flake8_args='--config=/home/max/.config/flake8'
-let g:syntastic_aggregate_errors = 1
-
-" Syntastic C++11
-let g:syntastic_cpp_compiler = 'g++'
-let g:syntastic_cpp_compiler_options = '-std=c++14'
-
 set laststatus=2
 " Set this to 1 if powerline fonts are installed.
 let g:airline_powerline_fonts = 1
@@ -167,5 +151,8 @@ let g:formatdef_autopep8 = "'autopep8 --aggressive --aggressive - --range '.a:fi
 let g:formatters_python = ['autopep8']
 noremap <F3> :Autoformat<CR>
 
-let ropevim_goto_def_newwin = 1
-let ropevim_guess_project = 1
+" Vimwiki
+let g:vimwiki_list = [{'path': '~/vimwiki/', 'syntax': 'markdown', 'ext': '.md'}]
+let g:vimwiki_global_ext = 0
+
+let g:indentLine_fileTypeExclude = ['tex', 'json', 'markdown']