Configuration_Files/user/configdir/shrc

53 lines
1.1 KiB
Plaintext

# Before we do anything else, move to the Workspace!
cd ~/Desktop/Workspace
# Clear the login screen
clear
# Modify the path if needed
#PATH="/home/midfavila/.local/bin/scripts/:$PATH"
# Modify the manpath if needed
export MANPATH="$MANPATH"
# Set your preferred tools here
export EDITOR='emacsclient -cuq -nw'
export PAGER=less
export XPG=xless
export W3B=Navigator
export VPLAY=fpv
export MPLAY=fpm
export IVIEW=gpicview
alias edit="$EDITOR"
# Keep crap out of $HOME
export XDG_CACHE_HOME="/tmp/"
export LESSHISTFILE="/dev/null"
#export GTK2_RC_FILES="~/.config/gtk-2.0/gtkrc"
export XDG_CONFIG_HOME="/home/midfavila/.config/"
export CONFIG_DIR=".config"
## Set up some aliases ##
# Typing git clone foobar is annoying.
alias gcl="git clone"
# Too lazy to type kiss? Now introducing k!
alias k='kiss'
# We need to work around glibc's shitty parameter parsing.
#alias ssu='/bin/ssu -- '
## Handle remote filesystems ##
# Are we using yash? If so, source additional configs.
# This seems to be broken right now... will have to clean this up.
#if [ $SHELL = /bin/yash ]
#then
for file in $HOME/.config/yash/conf/*
do
. $file
done
#fi