diff --git a/.vimrc b/.vimrc index a6b9ac3..7105ed6 100644 --- a/.vimrc +++ b/.vimrc @@ -4,31 +4,22 @@ 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' - -" The following are examples of different formats supported. " Keep Plugin commands between vundle#begin/end. - +Plugin 'VundleVim/Vundle.vim' " Git wrapper Plugin 'tpope/vim-fugitive' -" Python autocompletion -"Plugin 'davidhalter/jedi-vim' - " status/tabline Plugin 'vim-airline/vim-airline' Plugin 'vim-airline/vim-airline-themes' " base16 color scheme -Plugin 'chriskempson/base16-vim' +"Plugin 'chriskempson/base16-vim' +Plugin 'dracula/vim', { 'name': 'dracula' } " gruvbox color scheme " https://github.com/morhetz/gruvbox/wiki/Installation -Plugin 'morhetz/gruvbox' +"Plugin 'morhetz/gruvbox' " All of your Plugins must be added before the following line call vundle#end() " required @@ -41,20 +32,23 @@ filetype plugin indent on " required " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate " :PluginSearch foo - searches for foo; append `!` to refresh local cache " :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal +" :PluginUpdate - Updates plugins " " see :h vundle for more details or wiki for FAQ " Put your non-Plugin stuff after this line " airline theme "let g:airline_theme='violet' -let g:airline_theme='gruvbox' +"let g:airline_theme='gruvbox' +let g:airline_theme='dracula' set t_Co=256 "colorscheme base16-codeschool "colorscheme base16-atelier-dune-light "colorscheme base16-darktooth -colorscheme gruvbox +"colorscheme gruvbox +colorscheme dracula syntax on " enable vim modelines