Tuesday, July 11, 2017

I'm running Vim 8.0.124 and I've installed the [vim-snipmate](https://github.com/garbas/vim-snipmate) plugin to use in my Python and Django development. I followed the instructions by creating a .vimrc file that contains the following:

# ~/.vimrc
set nocompatible " Required by Vundle
filetype off " Required by Vundle

" Begin Vundle settings ==========================================================
"
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'VundleVim/Vundle.vim'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate'
# Optional
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'

call vundle

No comments: