-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvim-init.sh
More file actions
executable file
·71 lines (57 loc) · 2.29 KB
/
vim-init.sh
File metadata and controls
executable file
·71 lines (57 loc) · 2.29 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env bash
cd
# remove current vim directories
rm -rf ~/.vim
rm -rf ~/.vimrc
rm -rf ~/.gvimrc
git clone git@github.com:geopet/dotvim.git ~/.vim
mkdir -p ~/.vim/pack/plugins/start
mkdir -p ~/.vim/pack/languages/start
mkdir -p ~/.vim/pack/colors/start
# install vim configs create sym links
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrc
# plugins
cd ~/.vim/pack/plugins/start
git clone git@github.com:kien/ctrlp.vim.git
git clone git@github.com:ervandew/supertab.git
git clone git@github.com:tpope/vim-bundler.git
git clone git@github.com:tpope/vim-commentary.git
git clone git@github.com:tpope/vim-fugitive.git
git clone git@github.com:tpope/vim-repeat.git
git clone git@github.com:tpope/vim-surround.git
git clone git@github.com:tpope/vim-unimpaired.git
git clone git@github.com:tpope/vim-vinegar.git
git clone git@github.com:tpope/vim-eunuch.git
git clone git@github.com:skalnik/vim-vroom.git
git clone git@github.com:christoomey/vim-tmux-navigator.git
git clone git@github.com:rking/ag.vim.git
git clone git@github.com:dense-analysis/ale.git
# languages
cd ~/.vim/pack/languages/start
git clone git@github.com:vim-ruby/vim-ruby.git
git clone git@github.com:tpope/vim-rails.git
git clone git@github.com:tpope/vim-rake.git
git clone git@github.com:pangloss/vim-javascript.git
git clone git@github.com:isRuslan/vim-es6.git
git clone git@github.com:ElmCast/elm-vim.git
git clone git@github.com:elixir-lang/vim-elixir.git
git clone git@github.com:rust-lang/rust.vim.git
git clone git@github.com:tpope/vim-markdown.git
git clone git@github.com:mxw/vim-jsx.git
git clone git@github.com:wilsaj/chuck.vim.git
git clone git@github.com:digitaltoad/vim-pug.git
git clone git@github.com:mustache/vim-mustache-handlebars.git
git clone git@github.com:justinj/vim-pico8-syntax.git
git clone git@github.com:fatih/vim-go.git
# colors
cd ~/.vim/pack/colors/start
git clone git@github.com:matthewtodd/vim-twilight.git
git clone git@github.com:nanotech/jellybeans.vim.git
git clone git@github.com:chriskempson/vim-tomorrow-theme.git
git clone git@github.com:rking/vim-detailed.git
git clone git@github.com:acarapetis/vim-colors-github.git
git clone git@github.com:wesgibbs/vim-irblack.git
git clone git@github.com:vim-scripts/Zenburn.git
git clone git@github.com:tomasr/molokai.git
git clone git@github.com:sickill/vim-monokai.git