-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvim_install.sh
executable file
·51 lines (39 loc) · 1 KB
/
vim_install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
# Install vundle
mkdir -p ~/.vim/bundle
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
# Ctags for tagbar
sudo pacman -S ctags
# Install standard formatters
sudo pacman -S clang
sudo pacman -S astyle
sudo pacman -S python python2 autopep8 python-jsbeautifier
sudo pacman -S ruby
gem install rbeautify
sudo pacman -S stylish-haskell
sudo pacman -S python-editorconfig
# Install Golang
sudo pacman -S go
# Install flake8
sudo pacman -S flake8
# Install markdown pre-viewer
sudo pacman -S nodejs npm
sudo pacman -S xdg-utils curl
sudo npm -g install instant-markdown-d
# Install scala
sudo pacman -S scala
# Install latex
sudo pacman -S latex
# Install Haskell
sudo pacman -S ghc ghc-mod
sudo pacman -S stack
# Install plugins with Vundle
vim +PluginInstall +qall
# Install vimproc.vim
cd ~/.vim/bundle/vimproc.vim
sudo pacman -S make
make
# Install YCM
cd ~/.vim/bundle/YouCompleteMe
sudo pacman -S automake gcc gcc-c++ cmake
./install.py --gocode-completer --tern-completer