Browse Source

remove old zsh configs

Josh Bicking 3 years ago
parent
commit
d3836864e1

+ 0 - 17
bash/.bashrc

@@ -3,20 +3,3 @@ if [ -f "/usr/local/dcs/lib/config/Bash_Profile" ]; then
 fi
 
 PS1='\[\e[1;32m\]\u@\h \W\$ \[\e[0m\]'
-
-# ls pleasantness
-alias l='\ls --color=auto'
-alias ls='ls --color=auto'
-alias la='ls -a --color=auto'
-alias lsa='ls -a --color=auto'
-alias lls='ls -lh --color=auto'
-alias ll='ls -lh --color=auto'
-# Custom ls colors
-eval $(dircolors ~/.dircolors)
-
-# grep the entirety of the history
-alias hg='history | grep'
-
-# Use emacs as the default text editor
-export EDITOR="emacsclient -t"
-export VISUAL="emacsclient -c -a emacs"

+ 7 - 1
profile/.profile

@@ -16,6 +16,11 @@ if [ -n "$BASH_VERSION" ]; then
     fi
 fi
 
+alias ls='ls --color=auto'
+
+# Custom ls colors
+eval $(dircolors ~/.dircolors)
+
 pathappend() {
     for ARG in "$@"
     do
@@ -31,7 +36,6 @@ pathappend \
     "$HOME/.cargo/bin" \
     "$HOME/.poetry/bin" \
     "$HOME/.pyenv/bin" \
-    "/usr/lib/go-1.12/bin" \
     "/usr/local/go/bin" \
     "/usr/sbin"
 
@@ -39,3 +43,5 @@ if [ -d "$HOME/.pyenv/bin" ]; then
     eval "$(pyenv init -)"
     eval "$(pyenv virtualenv-init -)"
 fi
+
+# export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src/"

+ 0 - 26
zsh-local-arch/.zshrc.local

@@ -1,26 +0,0 @@
-# Used to keep steam from throwing errors
-export SWT_GTK3=0
-
-# devkitPro/devkitPPC sources
-export DEVKITPRO=/home/josh/devkitPro/
-export DEVKITPPC=${DEVKITPRO}/devkitPPC
-export DEVKITARM=${DEVKITPRO}/devkitARM
-
-# DOOM config
-alias doom='dosbox -conf .dosbox/dosbox-0.74-doom.conf'
-
-# Better fonts, proper GTK theming in Swing
-export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel'
-
-# Android dev
-export ANDROID_HOME=/opt/android-sdk
-
-# go
-export GOPATH=/home/josh/go
-
-# pyenv
-export PATH="/home/josh/.pyenv/bin:$PATH"
-eval "$(pyenv init -)"
-eval "$(pyenv virtualenv-init -)"
-
-alias vi=vim

+ 0 - 5
zsh-local-cygwin/.zshrc.local

@@ -1,5 +0,0 @@
-# Used for X forwarding in Cygwin
-if [[ "$(uname -o)" != "GNU/Linux" ]]; then
-    DISPLAY=:1.0
-fi
-

+ 0 - 1
zsh-local-server/.zshrc.local

@@ -1 +0,0 @@
-alias zork='sudo ttyecho -n /dev/tty7'

+ 0 - 3
zsh-local-tablet/.zshrc.local

@@ -1,3 +0,0 @@
-# devkit
-export DEVKITPRO=/mnt/data/devkitPro
-export DEVKITARM=${DEVKITPRO}/devkitARM

+ 0 - 46
zsh/.zshrc

@@ -59,26 +59,6 @@ setopt appendhistory autocd extendedglob nomatch
 # List of word delimeters
 WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
 
-# ls pleasantness
-alias l='\ls --color=auto'
-alias ls='ls --color=auto'
-alias la='ls -a --color=auto'
-alias lsa='ls -a --color=auto'
-alias lls='ls -lh --color=auto'
-alias ll='ls -lh --color=auto'
-
-# Custom ls colors
-eval $(dircolors ~/.dircolors)
-
-# Use emacsclient as the default text editor
-export EDITOR="emacsclient -t"
-export VISUAL="emacsclient -c -a emacs"
-
-# eval used by thefuck
-if hash fuck 2>/dev/null; then
-    eval $(thefuck --alias)
-fi
-
 # Home and End keys jump the the beginning/end of the command
 bindkey "^[OH" beginning-of-line
 bindkey "^[[H" beginning-of-line
@@ -110,29 +90,3 @@ function sl_func() {
 }
 
 alias sl=sl_func
-
-# vi bindings
-#bindkey -v
-#export KEYTIMEOUT=1
-#
-#bindkey '^P' up-history
-#bindkey '^N' down-history
-#bindkey '^?' backward-delete-char
-#bindkey '^h' backward-delete-char
-#bindkey '^w' backward-kill-word
-#bindkey '^r' history-incremental-search-backward
-#
-#function zle-line-init zle-keymap-select {
-#    VIM_PROMPT="%{$fg_bold[yellow]%} [% NORMAL]% %{$reset_color%}"
-#    RPS1="${${KEYMAP/vicmd/$VIM_PROMPT}/(main|viins)/} $EPS1"
-#    zle reset-prompt
-#}
-#function zle-line-finish {
-#    VIM_PROMPT=""
-#    RPS1="${${KEYMAP/vicmd/$VIM_PROMPT}/(main|viins)/} $EPS1"
-#    zle reset-prompt
-#}
-#RPS1="${${KEYMAP/vicmd/$VIM_PROMPT}/(main|viins)/} $EPS1"
-#
-#zle -N zle-line-init
-#zle -N zle-keymap-select