Skip to content

Instantly share code, notes, and snippets.

@carlmartus
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlmartus/0b2fa062a1a6bea80ca4 to your computer and use it in GitHub Desktop.
Save carlmartus/0b2fa062a1a6bea80ca4 to your computer and use it in GitHub Desktop.
zsh config
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -v
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/freze/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
bindkey '^P' up-history
bindkey '^N' down-history
setopt hist_ignore_all_dups
autoload -U colors
colors
alias ls='ls --color=auto'
bindkey -M viins 'jk' vi-cmd-mode
PROMPT=" ${fg_bold[green]}[ ${fg[red]}%1~${fg_bold[green]} ]${fg[yellow]} #${reset_color} "
export CC=clang
export CXX=clang++
export EDITOR=vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment