-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle-installer.sh
More file actions
executable file
·62 lines (51 loc) · 2.38 KB
/
Copy pathbundle-installer.sh
File metadata and controls
executable file
·62 lines (51 loc) · 2.38 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
#!/bin/bash
# Bootstrapping vim set-up.
echo "Creating vimrc link"
ln -s $(pwd)/vimrc ~/.vimrc
echo "Placing the cheatsheet in help dir"
DOC_DIR=""
mkdir -p ~/.vim/doc/
ln -s $(pwd)/cheatsheet.txt ~/.vim/doc
echo "Creating host specific vimrc .vimrc"
echo '"Place settings specific to this host here' > ~/.vimrcx
echo "Installing and placing pathogen"
mkdir -p ~/.vim/autoload ~/.vim/bundle
curl -Sso ~/.vim/autoload/pathogen.vim https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim
mkdir -p ~/.vim/bundle
pushd ~/.vim/bundle
echo "Downloading bundles..."
mkdir -p ~/.vim/autoload ~/.vim/bundle
git clone https://github.com/kien/ctrlp.vim.git
git clone https://github.com/scrooloose/nerdtree.git
git clone https://github.com/scrooloose/nerdcommenter.git
git clone https://github.com/tpope/vim-fugitive.git
git clone https://github.com/mileszs/ack.vim.git
git clone https://github.com/vim-scripts/taglist.vim
git clone https://github.com/davidhalter/jedi-vim.git
# Make sure to update the jedi code, https://github.com/davidhalter/jedi-vim/issues/53
pushd jedi-vim
git submodule update --init
popd
git clone https://github.com/scrooloose/syntastic.git # Linting
git clone https://github.com/hynek/vim-python-pep8-indent.git
git clone https://github.com/mikewest/vimroom.git #Distraction Free editing mode
git clone https://github.com/itchyny/lightline.vim # Status line modifier
git clone https://github.com/ifthikhan/vimscratch # Simple scratch buffer
git clone https://github.com/ervandew/supertab.git
#git clone https://github.com/tomtom/tlib_vim.git
#git clone https://github.com/MarcWeber/vim-addon-mw-utils.git #Utils
#git clone https://github.com/garbas/vim-snipmate.git #Utils
git clone https://github.com/honza/vim-snippets.git
git clone https://github.com/SirVer/ultisnips.git
git clone https://github.com/vim-scripts/vim-python-virtualenv
git clone https://github.com/tpope/vim-surround
# Colorschemes
git clone https://github.com/vim-scripts/peaksea.git
git clone https://github.com/therubymug/vim-pyte.git
git clone https://github.com/wesgibbs/vim-irblack.git
git clone https://github.com/vim-scripts/mayansmoke.git
# The installation of the solar theme requires the installation of a theme for
# the terminal itself which can be done from the repo
# https://github.com/sigurdga/gnome-terminal-colors-solarized
#git clone https://github.com/altercation/vim-colors-solarized.git
popd