dotfiles/bash_profile

11 lines
154 B
Bash
Raw Normal View History

2018-07-15 10:24:42 +02:00
# -*- sh -*-
export LANG=en_US.UTF-8
2018-07-15 09:47:03 +02:00
[[ -r /etc/bashrc ]] && . /etc/bashrc
2018-07-15 10:24:42 +02:00
[[ -r ~/.bashrc ]] && . ~/.bashrc
PATH=$HOME/.local/bin/:$PATH
export PATH