Added all dotfiles

This commit is contained in:
jon
2017-07-09 19:22:08 -05:00
parent 0c2703a16f
commit f62d14fa8c
16 changed files with 215 additions and 0 deletions

12
bash/.bash_profile Normal file
View File

@@ -0,0 +1,12 @@
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/.local/bin:$HOME/bin
export PATH

21
bash/.bashrc Normal file
View File

@@ -0,0 +1,21 @@
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
alias l.='ls -lh --color=auto' 2>/dev/null
alias l='ls -lh'
alias ll='ls -lh'
set -o vi
#golang stuff
export GOPATH=$HOME/gopath
export PATH=$GOPATH:$GOPATH/bin:$PATH
export EDITOR=/usr/bin/vim