add .profile file

This commit is contained in:
odrling 2019-06-23 18:49:02 +02:00
parent 7737cda014
commit 12a6d1fc93
3 changed files with 10 additions and 3 deletions

3
.gitignore vendored
View file

@ -17,6 +17,9 @@ Cache
# zsh modules
!.zsh/
# .profile
!/.profile
# git config file
!/.gitconfig

3
.profile Normal file
View file

@ -0,0 +1,3 @@
export BROWSER=firefox
export EDITOR=vi
export DEFAULT_OUTPUT="HDMI1"

7
.zshrc
View file

@ -53,9 +53,6 @@ if which ruby > /dev/null 2>&1; then
export PATH="$PATH:$(ruby -e 'print Gem.user_dir')/bin"
fi
export EDITOR=nvim
#export TERM="xterm"
alias dots="git --git-dir=$HOME/.dots --work-tree=$HOME"
alias venv="source ~/.venv/bin/activate"
alias top="htop"
@ -79,3 +76,7 @@ function start_tmux() {
}
[ -f ~/.zshrc.local ] && . ~/.zshrc.local
[ -f ~/.profile ] && . ~/.profile
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh