.vim/vimrc

22 lines
617 B
VimL

set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Golang Plugin
Plugin 'fatih/vim-go'
" Protobuf Plugin
Plugin 'uarun/vim-protobuf'
" Python Plugin
Plugin 'python-mode/python-mode'
Plugin 'yssource/python.vim'
Plugin 'vim-scripts/python_match.vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required