-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Deoplete with Completor, cleanup vimrc
Signed-off-by: Tomas Slusny <[email protected]>
- Loading branch information
Showing
21 changed files
with
54 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../vim/.vim/ftplugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule completor.vim
added at
6350a3
Submodule deoplete.nvim
deleted from
d24774
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
setlocal omnifunc=ccomplete#Complete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
setlocal omnifunc=csscomplete#CompleteCSS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
setlocal omnifunc=htmlcomplete#CompleteTags | ||
let g:syntastic_html_checkers = ['htmlhint'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
setlocal omnifunc=javacomplete#Complete | ||
let g:JavaComplete_ImportSortType = 'packageName' | ||
let g:JavaComplete_ImportOrder = ['*'] | ||
set makeprg=mvn\ $* | ||
set errorformat=\[%t%[A-Z]%#]\ %f:[%l\\,%c]\ %m, | ||
\\[%t%[A-Z]%#]\ %f:%l:\ %m, | ||
\\%A%f:[%l\\,%c]\ %m, | ||
\\%Csymbol%.%#:\ %m, | ||
\\%Zlocation%.%#:\ %m, | ||
\\%AEmbedded\ error:%.%#\ -\ %f:%l:\ %m, | ||
\\%-Z\ %p^, | ||
\\%A%f:%l:\ %m, | ||
\\%-Z\ %p^, | ||
\\%ARunning\ %f, | ||
\\%+ZTests\ run%.%#FAILURE!%.%#, | ||
\\%ARunning\ %f, | ||
\\%C%.%#, | ||
\\%+ZTests\ run%.%#FAILURE!%.%#, | ||
\\%-G%.%# | ||
|
||
let g:completor_java_omni_trigger = '\w+$|[\w\)\]\}\\\'\"]+\.\w*$' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
setlocal omnifunc=javascriptcomplete#CompleteJS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
setlocal omnifunc=htmlcomplete#CompleteTags | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
setlocal omnifunc=pythoncomplete#Complete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
" Deoplete plugin integration | ||
let g:deoplete#omni#input_patterns = get(g:,'deoplete#omni#input_patterns',{}) | ||
let g:deoplete#omni#input_patterns.typescript = ['[^. \t0-9]\.\w*'] | ||
|
||
" Tsuquyomi and synstatic integration | ||
let g:tsuquyomi_disable_quickfix = 1 | ||
let g:syntastic_typescript_checkers = ['tsuquyomi'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
let g:syntastic_vim_checkers = ['vint'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
setlocal omnifunc=xmlcomplete#CompleteTags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule .fzf
updated
5 files
+1 −0 | .gitignore | |
+146 −0 | README-VIM.md | |
+4 −69 | README.md | |
+1 −1 | bin/fzf-tmux | |
+175 −0 | doc/fzf.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters