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.readonly = ''
|
||||
let g:airline_symbols.linenr = ''
|
||||
let g:airline_theme='minimalist'
|
||||
|
|
2
vimrc
2
vimrc
|
@ -113,4 +113,4 @@ if has("gui_macvim")
|
|||
endif
|
||||
|
||||
" 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
|
||||
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
|
||||
" source
|
||||
Plugin 'Tagbar'
|
||||
|
@ -21,22 +18,18 @@ Plugin 'vim-misc'
|
|||
Plugin 'easytags.vim'
|
||||
" look for .editorconfig and merge into vim settings
|
||||
Plugin 'editorconfig/editorconfig-vim'
|
||||
" Scala and SBT support
|
||||
Plugin 'derekwyatt/vim-scala'
|
||||
Plugin 'derekwyatt/vim-sbt'
|
||||
" file and dir browser
|
||||
Plugin 'scrooloose/nerdtree'
|
||||
" syntax checking on steroids
|
||||
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
|
||||
Plugin 'rking/ag.vim'
|
||||
" lightweight but sophisticated status line
|
||||
Plugin 'bling/vim-airline'
|
||||
Plugin 'vim-airline/vim-airline'
|
||||
Plugin 'vim-airline/vim-airline-themes'
|
||||
" git integration
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
" heavily designed color scheme for readability
|
||||
Plugin 'altercation/vim-colors-solarized'
|
||||
" visualize vim's undo tree
|
||||
Plugin 'sjl/gundo.vim'
|
||||
" better support for JS
|
||||
|
@ -56,8 +49,6 @@ Plugin 'marijnh/tern_for_vim'
|
|||
Plugin 'rust-lang/rust.vim'
|
||||
" support for Rust's build tool/dependency manager
|
||||
Plugin 'timonv/vim-cargo'
|
||||
" support for multiple cursors
|
||||
Plugin 'terryma/vim-multiple-cursors'
|
||||
" support for quickly changing font size
|
||||
Plugin 'drmikehenry/vim-fontsize'
|
||||
" support for jsonnet
|
||||
|
|
Loading…
Reference in a new issue