Skip to content

Instantly share code, notes, and snippets.

@henrytseng
Last active October 23, 2023 02:11
Show Gist options
  • Save henrytseng/fd367878b7f5d3fa33b0443a895a29ba to your computer and use it in GitHub Desktop.
Save henrytseng/fd367878b7f5d3fa33b0443a895a29ba to your computer and use it in GitHub Desktop.
Install vim bundles with pathogen
#!/bin/bash
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
mkdir -p ~/.vim/autoload ~/.vim/bundle
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
cd ~/.vim/bundle
git clone https://github.com/kien/ctrlp.vim
git clone https://github.com/vim-airline/vim-airline
git clone https://github.com/tpope/vim-fugitive.git
git clone https://github.com/tpope/vim-sensible.git
git clone git@github.com:airblade/vim-gitgutter.git
git clone https://github.com/haya14busa/incsearch.vim
git clone git@github.com:tpope/vim-commentary.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment