From: Ben Beltran Date: Thu, 14 Mar 2019 10:54:26 +0000 (+0100) Subject: Use ALE instead of syntastic X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/commitdiff_plain/d9b5e620220d356f3dae51c15ae734f603637598 Use ALE instead of syntastic --- diff --git a/.gitmodules b/.gitmodules index c8ae5a1..952c621 100644 --- a/.gitmodules +++ b/.gitmodules @@ -56,3 +56,6 @@ [submodule "vim/bundle/syntastic-local-eslint"] path = vim/bundle/syntastic-local-eslint url = https://github.com/mtscout6/syntastic-local-eslint.vim.git +[submodule "vim/bundle/ale"] + path = vim/bundle/ale + url = https://github.com/w0rp/ale diff --git a/vim/.netrwhist b/vim/.netrwhist index 8975a54..2a9c560 100644 --- a/vim/.netrwhist +++ b/vim/.netrwhist @@ -1,4 +1,5 @@ let g:netrw_dirhistmax =10 -let g:netrw_dirhist_cnt =2 +let g:netrw_dirhist_cnt =3 let g:netrw_dirhist_1='/usr/local/lib/python2.7/site-packages' let g:netrw_dirhist_2='/Users/benbeltran/Projects/rack-machine' +let g:netrw_dirhist_3='/Users/rbeltrandelrio/.dotfiles/config/karabiner' diff --git a/vim/bundle/ale b/vim/bundle/ale new file mode 160000 index 0000000..80ef7ea --- /dev/null +++ b/vim/bundle/ale @@ -0,0 +1 @@ +Subproject commit 80ef7ea2d0b22f0d8de7387a3d5bf6e9e5b72e9d diff --git a/vim/bundle/syntastic b/vim/bundle/syntastic deleted file mode 160000 index 1089ee5..0000000 --- a/vim/bundle/syntastic +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1089ee5212b833d73c96ca93773b9eca1a0f721b diff --git a/vimrc b/vimrc index 1eefa87..d1f7c9f 100755 --- a/vimrc +++ b/vimrc @@ -79,6 +79,7 @@ set backspace=indent,eol,start " load the plugin and indent settings for the detected filetype filetype plugin indent on filetype plugin on +set omnifunc=syntaxcomplete#Complete " Opens an edit command with the path of the currently edited file filled in " Normal mode: e @@ -171,14 +172,6 @@ endfunction nnoremap :call NumberToggle() -" Syntastic stuff -let g:syntastic_javascript_checkers = ['eslint'] -let g:syntastic_always_populate_loc_list = 1 -let g:syntastic_check_on_open = 1 -let g:syntastic_check_on_wq = 1 -let g:syntastic_error_symbol = "X" -let g:syntastic_warning_symbol = "!" - " Dank Mono Italics highlight Keyword cterm=italic