]> git.r.bdr.sh - rbdr/dotfiles/commitdiff
Merge branch 'master' of gitlab.com:rbdr/dotfiles
authorBen Beltran <redacted>
Thu, 14 Mar 2019 22:17:28 +0000 (23:17 +0100)
committerBen Beltran <redacted>
Thu, 14 Mar 2019 22:17:28 +0000 (23:17 +0100)
.gitmodules
vim/.netrwhist
vim/bundle/ale [new submodule]
vim/bundle/syntastic [deleted submodule]
vimrc

index 6ed076be7f48a9ab9da6d05962621690ef4e1e94..af2491714b3c4bf0bac3fcfcb7af3698f61d6503 100644 (file)
@@ -59,3 +59,6 @@
 [submodule "vim/bundle/vim-vue"]
        path = vim/bundle/vim-vue
        url = https://github.com/posva/vim-vue
+[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