+ Use typenine server for language

This commit is contained in:
ziro 2020-11-08 16:47:59 +07:00
parent dd3fab1402
commit e6f1d254a4
2 changed files with 6 additions and 2 deletions

View file

@ -48,7 +48,11 @@ else
Plug 'roxma/vim-hug-neovim-rpc' Plug 'roxma/vim-hug-neovim-rpc'
endif endif
" deoplete source " deoplete source
Plug 'deoplete-plugins/deoplete-jedi' if has('win32') || has('win64')
Plug 'tbodt/deoplete-tabnine', { 'do': 'powershell.exe .\install.ps1' }
else
Plug 'tbodt/deoplete-tabnine', { 'do': './install.sh' }
endif
call plug#end() call plug#end()

View file

@ -9,7 +9,7 @@ if [[ -n $SSH_CONNECTION ]]; then
else else
export EDITOR='nvim' export EDITOR='nvim'
fi fi
export BROWSER='firefox' export BROWSER='qutebrowser'
export TERMINAL='alacritty' export TERMINAL='alacritty'
export READER='zathura' export READER='zathura'
export HTTPS='localhost:9050' export HTTPS='localhost:9050'