This repository has been archived on 2022-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
dot-files/.zshrc

58 lines
1.7 KiB
Bash
Raw Normal View History

# The following lines were added by compinstall
Various day-to-day changes made summarized as follows: .conkerorrc: * added better support for mime-type handling (pdf, ps, torrent, ...) .emacs: * added PKGBUILD mode * disabled hs-org/minor-mode because of it not playing well with auto-complete-mode and flyspell * disabled yasnippet for the time being (look into auto-complete-mode and flyspell issues) * disabled elget (not functioning plus there is the ELPA so whats the point?) .gnus: * set default account to rekahsoft@gmail.com (previously was only able to send through collin.doering (SMTP) and recieve mail through rekahsoft (IMAP)) * using encrypted autoinfo files now * TODO: get multiple IMAP/SMTP accounts working .screenrc: * disabled ncmpcpp screen (no longer using mpd sadly due to pulseaudio issues * disabled nvlc screen .xinitrc: * disabled trayer (no apps use it so whats the point) (still need to modify .xmobar to leave no gap on the right side of the screen) .xmonad/xmonad.hs: * beginning utilization of a few new modules from XMonad.Contrib including: - XMonad.Layout.Tabbed - XMonad.Layout.Sublayouts - XMonad.Layout.WindowNavigation - XMonad.Layout.BoringWindows Note: many of the added extensions above are not being used; just being prepared to be integrated into the environment (commented out) a few other extensions are being considered as well including: CycleWS, XMonad.Actions.TopicSpace and DynamicWorkspaces * disabled transmission-gtk scratchpad in preference of transmission-remote cli .zshrc: * new tab completion generated by compinstall (much nicer then previous) Signed-off-by: Collin Doering <rekahsoft@gmail.com>
2012-06-18 21:00:34 +00:00
zstyle ':completion:*' completer _list _expand _complete _ignored _match _correct _approximate _prefix
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' matcher-list '' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-/,+]=** r:|=**' 'l:|=* r:|=*'
zstyle ':completion:*' max-errors 5
zstyle ':completion:*' preserve-prefix '//[^/]##/'
zstyle :compinstall filename '/home/collin/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -e
# End of lines configured by zsh-newuser-install
# Check for an interactive session
[ -z "$PS1" ] && return
# Alias' to make bash prettier
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color-auto'
alias egrep='egrep --color-auto'
alias ncmpc='ncmpc -c'
alias knk='knock rekahsoft-mini 7713:tcp 1377:udp && sleep 3s && '
alias knkc='knk ssh rekahsoft-mini '
alias kgit='knk git'
alias skreen='screen -c /dev/null'
alias tranr='transmission-remote'
export GREP_COLOR="1;33"
alias grep='grep --color=auto'
# Use source-highlight to make code in less syntax highlighted
export LESSOPEN="| /usr/bin/src-hilite-lesspipe.sh %s"
export LESS=' -R '
PS1="[%n@%M: %~]%% "
# Turn off noscroll
stty stop undef
# Modify path variable to allow execution of the following:
# * mathematica / tools
# * nxclient / associated tools
# * maven tools
export PATH=${PATH}:/usr/local/bin:/opt/maven/bin:/opt/NX/bin:/home/collin/.cabal/bin
# start keychain
eval `keychain --eval --timeout 10 --quiet --agents ssh id_rsa`
# Default editor
export EDITOR="emacs -nw"