Remove GitHub colorscheme
* Every time I pull updates from this repo into my own dotfiles, I have to reconfigure my preferred theme (solarized) * Seems like there is not a majority or plurality of thoughbotters using a single colorscheme * Easiest to just not specify a colorscheme * See https://forum.upcase.com/t/why-is-the-default-vim-theme-on-dotfiles-is-github/4232
This commit is contained in:
parent
cf624303b5
commit
b3cb23830d
3 changed files with 7 additions and 7 deletions
|
@ -73,6 +73,13 @@ Your `~/.gitconfig.local` might look like this:
|
||||||
name = Dan Croak
|
name = Dan Croak
|
||||||
email = dan@thoughtbot.com
|
email = dan@thoughtbot.com
|
||||||
|
|
||||||
|
Your `~/.vimrc.local` might look like this:
|
||||||
|
|
||||||
|
" Color scheme
|
||||||
|
colorscheme github
|
||||||
|
highlight NonText guibg=#060606
|
||||||
|
highlight Folded guibg=#0A0A0A guifg=#9090D0
|
||||||
|
|
||||||
Your `~/.zshenv.local` might look like this:
|
Your `~/.zshenv.local` might look like this:
|
||||||
|
|
||||||
# load pyenv if available
|
# load pyenv if available
|
||||||
|
@ -154,7 +161,6 @@ What's in it?
|
||||||
* Use [Ag](https://github.com/ggreer/the_silver_searcher) instead of Grep when
|
* Use [Ag](https://github.com/ggreer/the_silver_searcher) instead of Grep when
|
||||||
available.
|
available.
|
||||||
* Use [Exuberant Ctags](http://ctags.sourceforge.net/) for tab completion.
|
* Use [Exuberant Ctags](http://ctags.sourceforge.net/) for tab completion.
|
||||||
* Use [GitHub color scheme](https://github.com/croaky/vim-colors-github).
|
|
||||||
* Use [vim-mkdir](https://github.com/pbrisbin/vim-mkdir) for automatically
|
* Use [vim-mkdir](https://github.com/pbrisbin/vim-mkdir) for automatically
|
||||||
creating non-existing directories before writing the buffer.
|
creating non-existing directories before writing the buffer.
|
||||||
* Use [Vundle](https://github.com/gmarik/Vundle.vim) to manage plugins.
|
* Use [Vundle](https://github.com/gmarik/Vundle.vim) to manage plugins.
|
||||||
|
|
5
vimrc
5
vimrc
|
@ -74,11 +74,6 @@ if executable('ag')
|
||||||
let g:ctrlp_use_caching = 0
|
let g:ctrlp_use_caching = 0
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Color scheme
|
|
||||||
colorscheme github
|
|
||||||
highlight NonText guibg=#060606
|
|
||||||
highlight Folded guibg=#0A0A0A guifg=#9090D0
|
|
||||||
|
|
||||||
" Make it obvious where 80 characters is
|
" Make it obvious where 80 characters is
|
||||||
set textwidth=80
|
set textwidth=80
|
||||||
set colorcolumn=+1
|
set colorcolumn=+1
|
||||||
|
|
|
@ -11,7 +11,6 @@ Plugin 'gmarik/Vundle.vim'
|
||||||
|
|
||||||
" Define bundles via Github repos
|
" Define bundles via Github repos
|
||||||
Plugin 'christoomey/vim-run-interactive'
|
Plugin 'christoomey/vim-run-interactive'
|
||||||
Plugin 'croaky/vim-colors-github'
|
|
||||||
Plugin 'kchmck/vim-coffee-script'
|
Plugin 'kchmck/vim-coffee-script'
|
||||||
Plugin 'ctrlpvim/ctrlp.vim'
|
Plugin 'ctrlpvim/ctrlp.vim'
|
||||||
Plugin 'pbrisbin/vim-mkdir'
|
Plugin 'pbrisbin/vim-mkdir'
|
||||||
|
|
Loading…
Add table
Reference in a new issue