dotfiles/bash/bashrc.bash

44 lines
816 B
Bash
Raw Normal View History

2017-10-05 13:17:39 +02:00
# Enable debug
# set -xv
2017-03-10 11:42:12 +01:00
export TERM=xterm-256color
export EDITOR=vim
# Colors
export CLICOLOR=1
export LSCOLORS=Exfxcxdxbxegedabagacad
export EDITOR=vim
export PROJECTS=$HOME/Code
# Go
2017-10-05 13:17:39 +02:00
export GOROOT=/usr/local/golang
export GOPATH=/usr/local/gopath
export CGO_ENABLED=0
2017-03-10 11:42:12 +01:00
2017-10-05 13:17:39 +02:00
# Bash stuff
2017-03-10 11:42:12 +01:00
function __bash_import { source $HOME/.bash/$1.bash; }
__bash_import "functions_internal"
__bash_import "history"
__bash_import "path"
__bash_import "format"
__bash_import "iterm"
__bash_import "alias"
__bash_import "prompt"
__bash_import "functions"
__bash_import "docker"
__bash_import "secrets"
# __bash_import "homebrew_completions"
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
#
# Misc
#
2017-10-05 13:17:39 +02:00
# export SSL_CERT_FILE="/usr/local/opt/curl-ca-bundle/share/ca-bundle.crt"