From 82cd0961457e6139caa10d9121dc4e213763b8d9 Mon Sep 17 00:00:00 2001 From: Sebastian Burschel Date: Mon, 25 Nov 2019 16:30:00 +0100 Subject: [PATCH] Added peekaboo, javacomlete2 --- dotfiles/.vimrc | 10 ++++++++++ dotfiles/.zshrc | 1 + 2 files changed, 11 insertions(+) diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc index ab0e783..c9fb7e0 100644 --- a/dotfiles/.vimrc +++ b/dotfiles/.vimrc @@ -50,6 +50,8 @@ Plugin 'posva/vim-vue' Plugin 'mattn/emmet-vim' Plugin 'vim-airline/vim-airline' Plugin 'ap/vim-buftabline' +Plugin 'junegunn/vim-peekaboo' +Plugin 'artur-shaik/vim-javacomplete2' " The following are examples of different formats supported. " Keep Plugin commands between vundle#begin/end. @@ -282,6 +284,14 @@ let g:user_emmet_leader_key=',' let g:jedi#popup_on_dot = 0 +" Peekaboo window width +let g:peekaboo_window = 'vert bo 65new' + + +" javacomplete2 +autocmd FileType java setlocal omnifunc=javacomplete#Complete + + colorscheme darcula diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc index 76cbae2..d315b58 100644 --- a/dotfiles/.zshrc +++ b/dotfiles/.zshrc @@ -70,3 +70,4 @@ alias scp='noglob scp' # Allows wildcards in scp commands alias rsync='noglob rsync' # Allows wildcards in rsync commands setxkbmap -option caps:escape # Change capslock key to escape zstyle ':completion:*' rehash true # Find new executables for autcompletion +