Created
September 28, 2020 20:39
-
-
Save tsmacdonald/b55ac4b741387807297fd0bde4e6d259 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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