Clean up, change colors
This commit is contained in:
parent
0d19f11db7
commit
3253658ca7
3 changed files with 5 additions and 13 deletions
|
@ -14,3 +14,4 @@ let g:airline_right_alt_sep = ''
|
||||||
let g:airline_symbols.branch = ''
|
let g:airline_symbols.branch = ''
|
||||||
let g:airline_symbols.readonly = ''
|
let g:airline_symbols.readonly = ''
|
||||||
let g:airline_symbols.linenr = ''
|
let g:airline_symbols.linenr = ''
|
||||||
|
let g:airline_theme='minimalist'
|
||||||
|
|
2
vimrc
2
vimrc
|
@ -113,4 +113,4 @@ if has("gui_macvim")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" make sure to set TERM to xterm-256color in terminal program or app
|
" make sure to set TERM to xterm-256color in terminal program or app
|
||||||
colorscheme desert
|
colorscheme slate
|
||||||
|
|
15
vundle.vim
15
vundle.vim
|
@ -9,9 +9,6 @@ call vundle#begin()
|
||||||
|
|
||||||
" let Vundle manage Vundle, required
|
" let Vundle manage Vundle, required
|
||||||
Plugin 'gmarik/Vundle.vim'
|
Plugin 'gmarik/Vundle.vim'
|
||||||
" doesn't appear to work in OS X but this plugin scan scan projects and support
|
|
||||||
" automatically adding imports
|
|
||||||
Plugin 'rustushki/JavaImp.vim'
|
|
||||||
" map a hotkey to opena split buffer showing the ctags driven structure of some
|
" map a hotkey to opena split buffer showing the ctags driven structure of some
|
||||||
" source
|
" source
|
||||||
Plugin 'Tagbar'
|
Plugin 'Tagbar'
|
||||||
|
@ -21,22 +18,18 @@ Plugin 'vim-misc'
|
||||||
Plugin 'easytags.vim'
|
Plugin 'easytags.vim'
|
||||||
" look for .editorconfig and merge into vim settings
|
" look for .editorconfig and merge into vim settings
|
||||||
Plugin 'editorconfig/editorconfig-vim'
|
Plugin 'editorconfig/editorconfig-vim'
|
||||||
" Scala and SBT support
|
|
||||||
Plugin 'derekwyatt/vim-scala'
|
|
||||||
Plugin 'derekwyatt/vim-sbt'
|
|
||||||
" file and dir browser
|
" file and dir browser
|
||||||
Plugin 'scrooloose/nerdtree'
|
Plugin 'scrooloose/nerdtree'
|
||||||
" syntax checking on steroids
|
" syntax checking on steroids
|
||||||
Plugin 'scrooloose/syntastic'
|
Plugin 'scrooloose/syntastic'
|
||||||
" integrate ack, especially to be able to open matches, hugely useful for
|
" integrate ag, especially to be able to open matches, hugely useful for
|
||||||
" code aware search
|
" code aware search
|
||||||
Plugin 'rking/ag.vim'
|
Plugin 'rking/ag.vim'
|
||||||
" lightweight but sophisticated status line
|
" lightweight but sophisticated status line
|
||||||
Plugin 'bling/vim-airline'
|
Plugin 'vim-airline/vim-airline'
|
||||||
|
Plugin 'vim-airline/vim-airline-themes'
|
||||||
" git integration
|
" git integration
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plugin 'tpope/vim-fugitive'
|
||||||
" heavily designed color scheme for readability
|
|
||||||
Plugin 'altercation/vim-colors-solarized'
|
|
||||||
" visualize vim's undo tree
|
" visualize vim's undo tree
|
||||||
Plugin 'sjl/gundo.vim'
|
Plugin 'sjl/gundo.vim'
|
||||||
" better support for JS
|
" better support for JS
|
||||||
|
@ -56,8 +49,6 @@ Plugin 'marijnh/tern_for_vim'
|
||||||
Plugin 'rust-lang/rust.vim'
|
Plugin 'rust-lang/rust.vim'
|
||||||
" support for Rust's build tool/dependency manager
|
" support for Rust's build tool/dependency manager
|
||||||
Plugin 'timonv/vim-cargo'
|
Plugin 'timonv/vim-cargo'
|
||||||
" support for multiple cursors
|
|
||||||
Plugin 'terryma/vim-multiple-cursors'
|
|
||||||
" support for quickly changing font size
|
" support for quickly changing font size
|
||||||
Plugin 'drmikehenry/vim-fontsize'
|
Plugin 'drmikehenry/vim-fontsize'
|
||||||
" support for jsonnet
|
" support for jsonnet
|
||||||
|
|
Loading…
Reference in a new issue