From fde0326047370cda101b581af326b0a09c58b9b8 Mon Sep 17 00:00:00 2001 From: Arif Herusetyo Wicaksono Date: Sat, 2 Nov 2019 21:55:41 +0900 Subject: [PATCH] Update vim8 configuration --- vim8.md | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/vim8.md b/vim8.md index 782cef6..ddee207 100644 --- a/vim8.md +++ b/vim8.md @@ -38,8 +38,8 @@ call vundle#begin() Plugin 'VundleVim/Vundle.vim' Plugin 'tpope/vim-fugitive' -Plugin 'Shougo/Denite.nvim' -Plugin 'Valloric/YouCompleteMe' +Plugin 'scrooloose/nerdtree' +Plugin 'ycm-core/YouCompleteMe' call vundle#end() filetype plugin indent on @@ -65,19 +65,5 @@ sudo apt install build-essential cmake python-dev # clone from github repositories and install python, go, and javascript completion cd $HOME/.vim/bundle/YouCompleteMe -./install.py --go-completer --js-completer - -# for javascript autocompletion -cd $HOME/.vim/bundle/YouCompleteMe/third_party/ycmd/third_party/tern_runtime -npm install --production -cat << EOF > $HOME/.tern-config -{ - "libs" : [ - "browser" - ] - "plugins": { - "node": {} - } -} -EOF +./install.py --go-completer --ts-completer --clang-completer ```