]> git.r.bdr.sh - rbdr/dotfiles/commitdiff
Use ALE instead of syntastic
authorBen Beltran <redacted>
Thu, 14 Mar 2019 10:54:26 +0000 (11:54 +0100)
committerBen Beltran <redacted>
Thu, 14 Mar 2019 10:54:26 +0000 (11:54 +0100)
.gitmodules
vim/.netrwhist
vim/bundle/ale [new submodule]
vim/bundle/syntastic [deleted submodule]
vimrc

index c8ae5a113cc5f3ccad3d4788f7f933410b291eb4..952c621f6ccb96eaf05455c4a19f1cd1fdee27fe 100644 (file)
@@ -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
index 8975a54b6100fc07e5040d8e857a39077dee74e7..2a9c5604a8acabeab15a2807f9a5a1eafc0d3c08 100644 (file)
@@ -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 (submodule)
index 0000000..80ef7ea
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit 80ef7ea2d0b22f0d8de7387a3d5bf6e9e5b72e9d
diff --git a/vim/bundle/syntastic b/vim/bundle/syntastic
deleted file mode 160000 (submodule)
index 1089ee5..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 1089ee5212b833d73c96ca93773b9eca1a0f721b
diff --git a/vimrc b/vimrc
index 1eefa87b38bbee118e7ec5bb9660acf053855ee6..d1f7c9f543b698b1d31e6ff52b91d6970bfd73f9 100755 (executable)
--- 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: <Leader>e
@@ -171,14 +172,6 @@ endfunction
 
 nnoremap <C-n> :call NumberToggle()<cr>
 
-" 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