Skip to content

Commit

Permalink
vundle instead of plugged, autostart plguins
Browse files Browse the repository at this point in the history
  • Loading branch information
luthes committed Aug 1, 2017
1 parent 6f1f009 commit 95ef3fe
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 9 deletions.
Submodule Vim-Jinja2-Syntax updated from 000000 to 1d525a
1 change: 1 addition & 0 deletions vim/bundle/Vundle.vim
Submodule Vundle.vim added at 6437ad
1 change: 1 addition & 0 deletions vim/bundle/nerdtree
Submodule nerdtree added at 8cd17c
1 change: 1 addition & 0 deletions vim/bundle/syntastic
Submodule syntastic added at e1161a
Submodule vim-sensible updated from 000000 to 49ee36
1 change: 0 additions & 1 deletion vim/plugged/nerdtree
Submodule nerdtree deleted from 626e80
1 change: 0 additions & 1 deletion vim/plugins/Vim-Jinja2-Syntax
Submodule Vim-Jinja2-Syntax deleted from 1d525a
28 changes: 21 additions & 7 deletions vimrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
" Use Vundle
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()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-sensible'
Plugin 'Glench/Vim-Jinja2-Syntax'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/syntastic'

call vundle#end() " required
filetype plugin indent on " required
" End Vundle

" Testing out Vim Options... "
" Move between Tabs
nnoremap <C-J> <C-W><C-J>
Expand All @@ -19,10 +40,3 @@ set ruler
set number
highlight LineNr ctermfg=46
set scrolloff=15

" Vim-plug
call plug#begin()
Plug 'tpope/vim-sensible'
Plug 'Glench/Vim-Jinja2-Syntax'
Plug 'scrooloose/nerdtree'
call plug#end()

0 comments on commit 95ef3fe

Please sign in to comment.