Changes at work.
This commit is contained in:
parent
a4e14ce0bc
commit
0096c96df5
7 changed files with 3599 additions and 7 deletions
3587
home/.bash_profile.d/bash_completions.d/git-completion.bash
Executable file
3587
home/.bash_profile.d/bash_completions.d/git-completion.bash
Executable file
File diff suppressed because it is too large
Load diff
|
@ -7,3 +7,5 @@ exe "source " . g:my_environ_dir . "/home/.vimrc.d/filetypes.vim"
|
||||||
|
|
||||||
exe "source " . g:my_environ_dir . "/home/.vimrc.d/plugins.vim"
|
exe "source " . g:my_environ_dir . "/home/.vimrc.d/plugins.vim"
|
||||||
exe "source " . g:my_environ_dir . "/home/.vimrc.d/dev-environ.vim"
|
exe "source " . g:my_environ_dir . "/home/.vimrc.d/dev-environ.vim"
|
||||||
|
|
||||||
|
exe "source " . g:my_environ_dir . "/home/.vimrc.d/gui.vim"
|
||||||
|
|
|
@ -140,10 +140,6 @@ endif
|
||||||
|
|
||||||
" APPEARANCE
|
" APPEARANCE
|
||||||
" ---------------------------------------
|
" ---------------------------------------
|
||||||
if has('gui_running')
|
|
||||||
set guifont=Monospace\ 14
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Fallback colors
|
" Fallback colors
|
||||||
colorscheme peachpuff
|
colorscheme peachpuff
|
||||||
|
|
||||||
|
|
8
home/.vimrc.d/gui.vim
Normal file
8
home/.vimrc.d/gui.vim
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
if has('gui_running')
|
||||||
|
set guifont=Menlo\ Regular:h20
|
||||||
|
set columns=90
|
||||||
|
set lines=30
|
||||||
|
|
||||||
|
autocmd VimEnter * if !argc() | NERDTree | endif
|
||||||
|
let g:NERDTreeMouseMode=3
|
||||||
|
endif
|
|
@ -49,7 +49,6 @@ call plug#end()
|
||||||
if has('gui_running')
|
if has('gui_running')
|
||||||
set background=dark
|
set background=dark
|
||||||
colorscheme solarized
|
colorscheme solarized
|
||||||
"set guifont=Menlo\ Regular:h12
|
|
||||||
else
|
else
|
||||||
set background=dark
|
set background=dark
|
||||||
colorscheme gruvbox
|
colorscheme gruvbox
|
||||||
|
|
|
@ -31,7 +31,7 @@ load_keys ()
|
||||||
|
|
||||||
# Source SSH settings, if applicable
|
# Source SSH settings, if applicable
|
||||||
# If a ssh auth socket exists at this point, it must be from a forwarded agent.
|
# If a ssh auth socket exists at this point, it must be from a forwarded agent.
|
||||||
if [ -n "${SSH_AUTH_SOCK+set}" ]
|
if [ -n "${SSH_AUTH_SOCK+set}" ] && [[ ${SSH_AUTH_SOCK} != *"com.apple.launchd"* ]]
|
||||||
then
|
then
|
||||||
if [ -f "${SSH_ENV}" ]
|
if [ -f "${SSH_ENV}" ]
|
||||||
then
|
then
|
||||||
|
|
2
private
2
private
|
@ -1 +1 @@
|
||||||
Subproject commit 9524ea509b53a757b60c1a7850da64a3537c43dc
|
Subproject commit 1b78b074f1e95bd8d4b36647cc7e700f5f19e92a
|
Loading…
Reference in a new issue