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 +