Last active
August 29, 2015 14:03
-
-
Save carlmartus/0b2fa062a1a6bea80ca4 to your computer and use it in GitHub Desktop.
zsh config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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