diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-09-27 20:09:50 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-09-27 20:09:50 +0700 |
commit | 9cef11d0147e1c66c3145962a0ae1b88b511ffb3 (patch) | |
tree | 883c39591a05a73c25601b6d7889ddaa5b2d83d7 /vim | |
parent | 6b9a1b1a3de10899b87a8a2c6e4074341d29cd02 (diff) | |
download | dotfiles-9cef11d0147e1c66c3145962a0ae1b88b511ffb3.tar.gz |
Update 2019-09-27
Diffstat (limited to 'vim')
l--------- | vim/.vim/initialize.py | 1 | ||||
l--------- | vim/.vim/jedi_vim.py | 1 | ||||
l--------- | vim/.vim/pythonx/jedi_vim.py | 1 | ||||
l--------- | vim/.vim/pythonx/jedi_vim_debug.py | 1 | ||||
-rwxr-xr-x | vim/.vim/vimrc | 4 |
5 files changed, 5 insertions, 3 deletions
diff --git a/vim/.vim/initialize.py b/vim/.vim/initialize.py deleted file mode 120000 index 15d8b35..0000000 --- a/vim/.vim/initialize.py +++ /dev/null @@ -1 +0,0 @@ -/usr/share/vim/addons/initialize.py \ No newline at end of file diff --git a/vim/.vim/jedi_vim.py b/vim/.vim/jedi_vim.py deleted file mode 120000 index c374365..0000000 --- a/vim/.vim/jedi_vim.py +++ /dev/null @@ -1 +0,0 @@ -/usr/share/vim/addons/jedi_vim.py \ No newline at end of file diff --git a/vim/.vim/pythonx/jedi_vim.py b/vim/.vim/pythonx/jedi_vim.py new file mode 120000 index 0000000..5d7fd99 --- /dev/null +++ b/vim/.vim/pythonx/jedi_vim.py @@ -0,0 +1 @@ +/usr/share/vim/addons/pythonx/jedi_vim.py \ No newline at end of file diff --git a/vim/.vim/pythonx/jedi_vim_debug.py b/vim/.vim/pythonx/jedi_vim_debug.py new file mode 120000 index 0000000..187dfe7 --- /dev/null +++ b/vim/.vim/pythonx/jedi_vim_debug.py @@ -0,0 +1 @@ +/usr/share/vim/addons/pythonx/jedi_vim_debug.py \ No newline at end of file diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index 782786c..f2a5003 100755 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -21,6 +21,7 @@ autocmd FileType c,h,go,glsl setlocal cindent cinoptions=(0 noexpandtab shiftwid autocmd FileType rst setlocal shiftwidth=3 autocmd FileType css,javascript,python,perl6 setlocal shiftwidth=4 autocmd FileType python syntax keyword pythonBoolean False True None +autocmd FileType java setlocal omnifunc=javacomplete#Complete let g:jedi#popup_on_dot = 0 let g:jedi#popup_select_first = 0 let g:jedi#show_call_signatures = 2 @@ -37,7 +38,8 @@ Plug 'https://github.com/tpope/vim-abolish.git' Plug 'https://github.com/alx741/vinfo.git' Plug 'https://github.com/drmikehenry/vim-fontsize.git' Plug 'https://github.com/lervag/vimtex.git', {'for': 'tex'} -Plug 'https://github.com/kovisoft/slimv', {'for': 'lisp'} +Plug 'https://github.com/kovisoft/slimv.git', {'for': 'lisp'} +Plug 'https://github.com/artur-shaik/vim-javacomplete2.git', {'for': 'java'} call plug#end() set t_Co=256 |