Skip to content

Instantly share code, notes, and snippets.

@tsmacdonald
Created September 28, 2020 20:39
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 tsmacdonald/b55ac4b741387807297fd0bde4e6d259 to your computer and use it in GitHub Desktop.
Save tsmacdonald/b55ac4b741387807297fd0bde4e6d259 to your computer and use it in GitHub Desktop.
tmacdonald@queequeg ~ $ diff .vimrc Dropbox/dotfiles/.vimrc
5a6,15
> " Install with:
> " mkdir -p ~/.vim/bundle && git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle && vim -c ':BundleInstall' -c ':qa!''
> " Update with:
> " vim -c ':BundleInstall!' -c ':BundleClean' -c ':qa!'
> "
> " You may also wish to install some extra tools to make it work better:
> " * Exuberant ctags - Used for Tagbar to show you where you are in the file. (mac: brew install ctags)
> " * flake8 - Used by Syntastical to check Python. (all: easy_install flake8)
> " * jslint - Used by Syntastical to check Javascript. (mac: brew install jslint)
> "
55a66,67
> " Vundler - vim package manager
> "-----------------------------------------------------------------------------
58c70,83
< call plug#begin('~/.vim/plugged')
---
> function! LoadBundles()
> " let Vundle manage Vundle
> " required!
> Bundle 'gmarik/vundle'
>
> " Press F2 to see a list of files and directories from your
> " current working directory
> Bundle 'scrooloose/nerdtree'
>
> Bundle 'MarcWeber/vim-addon-mw-utils'
>
> Bundle 'junegunn/vim-easy-align'
> " Utility functions for vim
> Bundle 'tomtom/tlib_vim'
60,62c85,87
< Plug 'junegunn/vim-easy-align'
<
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment