aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/.bash_profile2
-rw-r--r--bash/.bashrc6
2 files changed, 6 insertions, 2 deletions
diff --git a/bash/.bash_profile b/bash/.bash_profile
index 6d8c25b..c570a48 100644
--- a/bash/.bash_profile
+++ b/bash/.bash_profile
@@ -2,3 +2,5 @@
# Get the aliases and functions
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
+
+export PATH="$HOME/.cargo/bin:$PATH"
diff --git a/bash/.bashrc b/bash/.bashrc
index f1463cc..2d13ba7 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -2,16 +2,18 @@
set -o vi
PATH=~/bin:$PATH
+LPDEST=pictor
source ~/.pass_completion
-HISTSIZE=1000
-HISTFILESIZE=8000
+HISTSIZE=-1
+HISTFILESIZE=-1
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias ll='ls -laF'
+alias school='cd ~/Documents/clarkson'
alias xcopy='xclip -selection clipboard'
alias xpaste='xclip -selection clipboard -o'