-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
31 lines (31 loc) · 1.87 KB
/
Makefile
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
init:
touch ~/.vimrc
mv ~/.vimrc ~/.vimrc.bak
rm -rf bundle/
git clone https://github.com/ctrlpvim/ctrlp.vim.git bundle/ctrlp.vim
git clone https://github.com/scrooloose/nerdtree.git bundle/nerdtree
git clone https://github.com/jelera/vim-javascript-syntax.git bundle/vim-javascript-syntax
git clone https://github.com/flazz/vim-colorschemes.git bundle/colorschemes
git clone https://github.com/rking/ag.vim bundle/ag
git clone https://github.com/leafgarland/typescript-vim.git bundle/typescript-vim
git clone https://github.com/octol/vim-cpp-enhanced-highlight.git bundle/syntax/
git clone --depth=1 https://github.com/rust-lang/rust.vim.git bundle/rust.vim
git clone https://github.com/fatih/vim-go.git bundle/vim-go
git clone https://github.com/felixhummel/setcolors.vim.git bundle/setcolors
git clone --recursive https://github.com/python-mode/python-mode.git bundle/python-mode
git clone https://github.com/vim-airline/vim-airline bundle/airline
git clone https://github.com/vim-airline/vim-airline-themes.git bundle/airline-themes
git clone https://github.com/ryanoasis/vim-devicons.git bundle/devicons
git clone https://github.com/airblade/vim-gitgutter.git bundle/gitgutter
git clone https://github.com/Xuyuanp/nerdtree-git-plugin.git bundle/nerdtree-git-plugin
git clone https://github.com/keith/swift.vim.git bundle/swift
git clone https://github.com/Luxed/ayu-vim.git bundle/ayu-vim
git clone https://github.com/vim-denops/denops.vim.git bundle/denops
git clone https://github.com/Shougo/ddc.vim.git bundle/ddc-vim
git clone https://github.com/ryanoasis/vim-devicons.git bundle/vim-devicons
echo 'syn match pythonFunction "\zs\(\k\w*\)*\s*\ze("' >> bundle/python-mode/syntax/python.vim
ln -s ~/.vim/.vimrc ~/.vimrc
mkdir -p ~/.config/nvim
ln -s ~/.vim/.vimrc ~/.config/nvim/init.vim
ln -s ~/.vim/autoload ~/.config/nvim/autoload
ln -s ~/.vim/bundle ~/.config/nvim/bundle