dotfiles/files/.bashrc

62 lines
1.6 KiB
Bash
Raw Normal View History

2016-09-04 13:58:13 +02:00
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
#if [ -f "$HOME/.at_login" ]; then
# /bin/bash "$HOME/.at_login"
#fi
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# Aliases
[ -f ~/.bash_aliases ] && source ~/.bash_aliases
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
[ -f ~/.bash_ps1 ] && source ~/.bash_ps1
[ -f ~/.bash_sshagent ] && source ~/.bash_sshagent
export GTK_IM_MODULE=xim
export EDITOR=/usr/bin/vim
export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel'
2017-03-06 23:55:00 +01:00
export ANDROID_HOME=/opt/android-sdk
2016-09-04 13:58:13 +02:00
export PATH="$PATH:/home/tobast/bin"
2016-10-31 16:51:09 +01:00
export MANPATH="$MANPATH:$HOME/local/man"
2016-09-04 13:58:13 +02:00
export TERMINAL="/usr/bin/terminator"
2016-10-31 16:51:09 +01:00
export LC_REALUSER='tbastian'
2016-09-04 13:58:13 +02:00
# Opam
2018-10-23 10:21:50 +02:00
which opam > /dev/null 2>&1 && [ -d ~/.opam ] && eval $(opam config env)
2017-06-18 14:04:13 +02:00
# Gem
if [ -d "$HOME/.gem/ruby/2.4.0/bin" ] ; then
export PATH="$PATH:$HOME/.gem/ruby/2.4.0/bin"
fi