Skip to content

Instantly share code, notes, and snippets.

@sean-smith
Created September 17, 2015 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sean-smith/62963b0a06c03563ea4e to your computer and use it in GitHub Desktop.
Save sean-smith/62963b0a06c03563ea4e to your computer and use it in GitHub Desktop.
#Setup Vim Gist Plugin
Ok, we're going to setup vim-gist via https://github.com/tpope/vim-pathogen. To install Pathogen:
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
Then add the following lines to your vimrc:
execute pathogen#infect()
syntax on
filetype plugin indent on
The Gist plugin needs https://github.com/mattn/webapi-vim:
cd ~/.vim/bundle && \
git clone https://github.com/mattn/webapi-vim.git
Then install the Gist plugin:
cd ~/.vim/bundle && \
git clone https://github.com/mattn/gist-vim
Then setup your github username like so:
git config --global github.user <username>
Then open up vim and run:
:Gist
It'll ask for your github password and if it works you'll see a line line the following:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment