commit f63ea09de340bfeebbb38de1c4563f8d74c03d86
parent ec6d20d826df1eba11dd59efa77811c7b966ee43
Author: Arne Swanson <nownpl@0111.click>
Date: Sat, 11 Aug 2018 12:10:15 -0400
added sum stuff
Diffstat:
7 files changed, 33 insertions(+), 5 deletions(-)
diff --git a/bash/.bash_logout b/bash/.bash_logout
@@ -0,0 +1,5 @@
+#
+# ~/.bash_logout
+#
+
+echo 'Goodbye.'+
\ No newline at end of file
diff --git a/bash/.bash_profile b/bash/.bash_profile
@@ -0,0 +1,7 @@
+#
+# ~/.bash_profile
+#
+
+[[ -f ~/.bashrc ]] && . ~/.bashrc
+
+export PATH="$HOME/.cargo/bin:$PATH"
diff --git a/bash/.bashrc b/bash/.bashrc
@@ -0,0 +1,9 @@
+#
+# ~/.bashrc
+#
+
+# If not running interactively, don't do anything
+[[ $- != *i* ]] && return
+
+alias ls='ls --color=auto'
+PS1='[\u@\h \W]\$ '
diff --git a/zsh/.zaliases b/zsh/.zaliases
@@ -0,0 +1 @@
+alias help=run-help+
\ No newline at end of file
diff --git a/zsh/.zlogout b/zsh/.zlogout
@@ -0,0 +1 @@
+[[ -d "/home/$(whoami)/.tmp" ]] && rm -rf "/home/$(whoami)/.tmp/*"+
\ No newline at end of file
diff --git a/zsh/.zshenv b/zsh/.zshenv
@@ -0,0 +1,4 @@
+export LANG=en_US.UTF-8
+export ARCHFLAGS="-arch x86_64"
+export SSH_KEY_PATH="~/.ssh/id_rsa"
+export ABDUCO_CMD=dvtm+
\ No newline at end of file
diff --git a/zsh/.zshrc b/zsh/.zshrc
@@ -20,7 +20,5 @@ plugins=(
source $ZSH/oh-my-zsh.sh
[[ -d "$HOME/.cargo" ]] && source $HOME/.cargo/env
-export LANG=en_US.UTF-8
-export ARCHFLAGS="-arch x86_64"
-export SSH_KEY_PATH="~/.ssh/id_rsa"
-export ABDUCO_CMD=dvtm-status-
\ No newline at end of file
+source "/home/$(whoami)/.zaliases"
+source "/home/$(whoami)/.zshenv"