]> git.zndr.dk Git - dotfiles.git/commitdiff
Bugfix cosmetic bash update
authorJannik ZANDER <jannikz@gmail.com>
Tue, 3 May 2016 21:18:33 +0000 (23:18 +0200)
committerJannik ZANDER <jannikz@gmail.com>
Tue, 3 May 2016 21:20:04 +0000 (23:20 +0200)
.bashrc
.vimrc

diff --git a/.bashrc b/.bashrc
index 7bb9f79d6e425b50169b899452c28942287a8d7f..e2e9195588b8638eda23b1bc8f354cf4af611879 100644 (file)
--- 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 dbd9843e0827e52516e4ecdb8754b56399fc2072..d48ba743eec7023d267582dbebb5ba0392a1e2b3 100644 (file)
--- 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 <C-l> :TlistToggle<CR>
 
 " For local/private settings
-let $LOCALFILE=expand("~/.vimrc_local")
+let $LOCALFILE=expand("$HOME/.vimrc_local")
 if filereadable($LOCALFILE)
 source $LOCALFILE
 endif