From: Jannik ZANDER Date: Tue, 3 May 2016 21:18:33 +0000 (+0200) Subject: Bugfix cosmetic bash update X-Git-Url: https://git.zndr.dk/?a=commitdiff_plain;h=bf476d7916ece387a601c51a6a51e2cc591ed8f0;p=dotfiles.git Bugfix cosmetic bash update --- diff --git a/.bashrc b/.bashrc index 7bb9f79..e2e9195 100644 --- a/.bashrc +++ b/.bashrc @@ -2,10 +2,9 @@ # If not running interactively, don't do anything [[ "$-" != *i* ]] && return -#[ -n "$PS1" ] && source ~/.bash_profile; # Load settings -for file in "${HOME}/.bash/*"; do +for file in ${HOME}/.bash/*; do [ -f "$file" ] && source "$file"; done; diff --git a/.vimrc b/.vimrc index dbd9843..d48ba74 100644 --- a/.vimrc +++ b/.vimrc @@ -54,16 +54,16 @@ set wildmenu set nostartofline set confirm set cmdheight=2 -set notimeout ttimeout ttimeoutlen=4000 +set notimeout +set ttimeout +set ttimeoutlen=4000 +set tags+=tags; " For color "let g:solarized_termcolors=256 colorscheme solarized set background=dark -" Vim tips #59 -set tags+=tags; - " For markdown let g:vim_markdown_folding_disabled = 1 @@ -74,7 +74,7 @@ let Tlist_Close_On_Select = 1 nnoremap :TlistToggle " For local/private settings -let $LOCALFILE=expand("~/.vimrc_local") +let $LOCALFILE=expand("$HOME/.vimrc_local") if filereadable($LOCALFILE) source $LOCALFILE endif