Update vim8 configuration

This commit is contained in:
Arif Herusetyo Wicaksono 2019-11-02 21:55:41 +09:00
parent 13fc0223b0
commit fde0326047
Signed by: arif
GPG Key ID: 977E4FEF5F35FBF6

20
vim8.md
View File

@ -38,8 +38,8 @@ call vundle#begin()
Plugin 'VundleVim/Vundle.vim' Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive' Plugin 'tpope/vim-fugitive'
Plugin 'Shougo/Denite.nvim' Plugin 'scrooloose/nerdtree'
Plugin 'Valloric/YouCompleteMe' Plugin 'ycm-core/YouCompleteMe'
call vundle#end() call vundle#end()
filetype plugin indent on 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 # clone from github repositories and install python, go, and javascript completion
cd $HOME/.vim/bundle/YouCompleteMe cd $HOME/.vim/bundle/YouCompleteMe
./install.py --go-completer --js-completer ./install.py --go-completer --ts-completer --clang-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
``` ```