dotfiles/.vimrc

18 lines
400 B
VimL
Raw Normal View History

2018-10-13 10:46:38 +02:00
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
"call vundle#begin('~/some/path/here')
Plugin 'VundleVim/Vundle.vim'
2018-10-13 10:49:48 +02:00
Plugin 'tpope/vim-fugitive'
2018-10-13 10:46:38 +02:00
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
2018-10-13 10:49:48 +02:00