More moving stuff around

This commit is contained in:
Thomas Lovén 2017-10-16 23:58:59 +02:00
parent 363839b1e2
commit d668c03630
5 changed files with 11 additions and 4 deletions

View File

@ -13,6 +13,8 @@ function main()
brewget vim --with-override-system-vi
caskget docker
makedir ${HOME}/code
print_ok "Development environment setup"
}

View File

@ -9,6 +9,7 @@ function main()
${scriptdir}/setup_homebrew.sh
caskget google-chrome
caskget dropbox
}

View File

@ -3,16 +3,17 @@ set -x DOTFILES /Users/thomas/dotfiles
# Don't change it!
if test "$SHLVL" -le 1
# Homebrew path
set -x PATH /usr/local/bin /usr/local/sbin $PATH
set -x PATH $DOTFILES/bin $PATH
if test -d $HOME/bin
# Personal scripts
set -x PATH $HOME/bin $PATH
end
# To easily run things in current directory
set -x PATH . $PATH
set -x FISH_SETUP_PATH 'yes'
end
# Locale settings
set -x LANG sv_SE.UTF-8
set -x LC_ALL sv_SE.UTF-8

View File

@ -11,6 +11,9 @@ function main()
print_info "Installing terminal applications"
brewget tmux
makedir ${HOME}/bin
linkfile ${scriptdir}/columnize ${HOME}/bin/columnize
print_ok "Terminal applications installed"
}