Skip to content

Instantly share code, notes, and snippets.

@jeremy-clerc
Last active December 27, 2015 02:18
Show Gist options
  • Save jeremy-clerc/7250885 to your computer and use it in GitHub Desktop.
Save jeremy-clerc/7250885 to your computer and use it in GitHub Desktop.
# The following lines were added by compinstall
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
zstyle ':completion:*' menu select=1
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
zstyle :compinstall filename "$HOME/.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
function bak() {
echo $1
for file in $@; do
cp $file $file.bak
done
}
alias ls='ls --color'
alias ll='ls -l'
alias ..='cd ..'
source $HOME/liquidprompt
# https://github.com/nojhan/liquidprompt
# LP_PS1_PREFIX=${LP_PS1_PREFIX}"(%T)"
# Allow hosts completion
# /etc/ssh/ssh_config
# HashKnownHosts yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment