Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ Bundle 'eagletmt/ghcmod-vim'
Bundle 'eagletmt/neco-ghc'
Bundle 'Twinside/vim-hoogle'

" Custom bundles
if filereadable(expand("~/.vim.local/bundles.vim"))
source ~/.vim.local/bundles.vim
endif

" }}}

" VIM user interface {{{
Expand Down
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,5 +291,14 @@ then add `unmap <c-l>` to your .vimrc.local)
## Customizing

After installing this configuration, your `.vimrc` and `.vim` will
be under version control. Don't alter them, add your own settings to
`~/.vimrc.local` instead and your additions will be loaded.
be under version control. Don't alter these files. Instead, add your
own settings to `~/.vimrc.local` and `~/.vim.local/bundles.vim`.

## Adding Custom Bundles

Vundle requires all Bundle statements to be given at once. To accommodate
this restriction, `.vimrc` sources `~/.vim.local/bundles.vim` immediately
after its own Bundle statements.

Bundle statements made elsewhere are not recognized.