update .vimrc
This commit is contained in:
parent
ebbbe5a7b9
commit
2eb17a1aed
1 changed files with 9 additions and 15 deletions
24
.vimrc
24
.vimrc
|
|
@ -4,31 +4,22 @@ filetype off " required
|
||||||
" set the runtime path to include Vundle and initialize
|
" set the runtime path to include Vundle and initialize
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
call vundle#begin()
|
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.
|
" Keep Plugin commands between vundle#begin/end.
|
||||||
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
" Git wrapper
|
" Git wrapper
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plugin 'tpope/vim-fugitive'
|
||||||
|
|
||||||
" Python autocompletion
|
|
||||||
"Plugin 'davidhalter/jedi-vim'
|
|
||||||
|
|
||||||
" status/tabline
|
" status/tabline
|
||||||
Plugin 'vim-airline/vim-airline'
|
Plugin 'vim-airline/vim-airline'
|
||||||
Plugin 'vim-airline/vim-airline-themes'
|
Plugin 'vim-airline/vim-airline-themes'
|
||||||
|
|
||||||
" base16 color scheme
|
" base16 color scheme
|
||||||
Plugin 'chriskempson/base16-vim'
|
"Plugin 'chriskempson/base16-vim'
|
||||||
|
Plugin 'dracula/vim', { 'name': 'dracula' }
|
||||||
|
|
||||||
" gruvbox color scheme
|
" gruvbox color scheme
|
||||||
" https://github.com/morhetz/gruvbox/wiki/Installation
|
" https://github.com/morhetz/gruvbox/wiki/Installation
|
||||||
Plugin 'morhetz/gruvbox'
|
"Plugin 'morhetz/gruvbox'
|
||||||
|
|
||||||
" All of your Plugins must be added before the following line
|
" All of your Plugins must be added before the following line
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
|
|
@ -41,20 +32,23 @@ filetype plugin indent on " required
|
||||||
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
|
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
|
||||||
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
|
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
|
||||||
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
|
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
|
||||||
|
" :PluginUpdate - Updates plugins
|
||||||
"
|
"
|
||||||
" see :h vundle for more details or wiki for FAQ
|
" see :h vundle for more details or wiki for FAQ
|
||||||
" Put your non-Plugin stuff after this line
|
" Put your non-Plugin stuff after this line
|
||||||
|
|
||||||
" airline theme
|
" airline theme
|
||||||
"let g:airline_theme='violet'
|
"let g:airline_theme='violet'
|
||||||
let g:airline_theme='gruvbox'
|
"let g:airline_theme='gruvbox'
|
||||||
|
let g:airline_theme='dracula'
|
||||||
|
|
||||||
set t_Co=256
|
set t_Co=256
|
||||||
|
|
||||||
"colorscheme base16-codeschool
|
"colorscheme base16-codeschool
|
||||||
"colorscheme base16-atelier-dune-light
|
"colorscheme base16-atelier-dune-light
|
||||||
"colorscheme base16-darktooth
|
"colorscheme base16-darktooth
|
||||||
colorscheme gruvbox
|
"colorscheme gruvbox
|
||||||
|
colorscheme dracula
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
" enable vim modelines
|
" enable vim modelines
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue