aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-03-15 09:20:27 -0400
committerTucker Evans <tuckerevans24@gmail.com>2019-03-25 15:58:37 -0400
commite13d49079061b2f457d3da7201f533308ea515ab (patch)
treea75bc550230ea45e28f01d71683bf8a0b390ba4a
parent555fc783f0b48be9ac9b9df6cd41f80838945010 (diff)
Changes school, path, and history size
Also Adds default printer
-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'