Skip to content

Commit

Permalink
Snipmate ftw!
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Dec 28, 2012
1 parent 93fef90 commit d91168c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .vim/snippets/python.snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
snippet compat
from __future__ import print_function, division, absolute_import, unicode_literals
29 changes: 26 additions & 3 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,39 @@ endif
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()



" Let vundle manage vundle
Bundle 'gmarik/vundle'

" Custom bundles
Bundle 'vim-flake8'
" Command-T
Bundle 'Command-T'
Bundle 'fs111/pydoc.vim'

" Supertab
Bundle 'ervandew/supertab'

" Snipmate
Bundle "MarcWeber/vim-addon-mw-utils"
Bundle "tomtom/tlib_vim"
Bundle "honza/snipmate-snippets"
Bundle "garbas/vim-snipmate"

" Python plugins
Bundle 'vim-flake8'
Bundle 'fs111/pydoc.vim'

" Support for less syntax highlighting
Bundle 'groenewege/vim-less'

" LaTeX support
Bundle 'jcf/vim-latex'

" Autocompletion
Bundle 'davidhalter/jedi-vim'
Bundle 'rubycomplete.vim'



" Re-enable filetype plugin
filetype indent plugin on

Expand Down Expand Up @@ -146,3 +166,6 @@ map <leader>m :w<CR> :!make<CR><CR>
" Configure Command-T behavior
let g:CommandTAcceptSelectionTabMap='<CR>'
let g:CommandTAcceptSelectionSplitMap='<C-CR>'

" Configure snipmate
let g:snips_author='Danilo Bargen'

0 comments on commit d91168c

Please sign in to comment.