80 lines
2.2 KiB
Bash
80 lines
2.2 KiB
Bash
|
# Path to your oh-my-zsh installation.
|
|||
|
export ZSH="/home/fredefox/.oh-my-zsh"
|
|||
|
|
|||
|
ZSH_THEME="robbyrussell"
|
|||
|
|
|||
|
CASE_SENSITIVE="false"
|
|||
|
|
|||
|
# Uncomment the following line to disable bi-weekly auto-update checks.
|
|||
|
DISABLE_AUTO_UPDATE="false"
|
|||
|
|
|||
|
export UPDATE_ZSH_DAYS=50
|
|||
|
|
|||
|
# Uncomment the following line if you want to disable marking untracked files
|
|||
|
# under VCS as dirty. This makes repository status check for large repositories
|
|||
|
# much, much faster.
|
|||
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
|||
|
|
|||
|
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
|||
|
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
|||
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
|||
|
# Add wisely, as too many plugins slow down shell startup.
|
|||
|
plugins=(
|
|||
|
git
|
|||
|
)
|
|||
|
|
|||
|
source $ZSH/oh-my-zsh.sh
|
|||
|
|
|||
|
#
|
|||
|
# User configuration
|
|||
|
|
|||
|
# export MANPATH="/usr/local/man:$MANPATH"
|
|||
|
|
|||
|
# You may need to manually set your language environment
|
|||
|
# export LANG=en_US.UTF-8
|
|||
|
|
|||
|
# Preferred editor for local and remote sessions
|
|||
|
# if [[ -n $SSH_CONNECTION ]]; then
|
|||
|
# export EDITOR='vim'
|
|||
|
# else
|
|||
|
# export EDITOR='mvim'
|
|||
|
# fi
|
|||
|
|
|||
|
# Compilation flags
|
|||
|
# export ARCHFLAGS="-arch x86_64"
|
|||
|
|
|||
|
# ssh
|
|||
|
# export SSH_KEY_PATH="~/.ssh/rsa_id"
|
|||
|
|
|||
|
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
|||
|
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
|||
|
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
|
|||
|
# For a full list of active aliases, run `alias`.
|
|||
|
#
|
|||
|
# Example aliases
|
|||
|
# alias zshconfig="mate ~/.zshrc"
|
|||
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
|||
|
|
|||
|
|
|||
|
# The following lines were added by compinstall
|
|||
|
zstyle :compinstall filename '/home/fredefox/.zshrc'
|
|||
|
|
|||
|
autoload -Uz compinit
|
|||
|
compinit
|
|||
|
# End of lines added by compinstall
|
|||
|
# Lines configured by zsh-newuser-install
|
|||
|
HISTFILE=~/.histfile
|
|||
|
HISTSIZE=100000
|
|||
|
SAVEHIST=100000
|
|||
|
setopt appendhistory extendedglob
|
|||
|
unsetopt autocd beep
|
|||
|
bindkey -e
|
|||
|
# End of lines configured by zsh-newuser-install
|
|||
|
|
|||
|
export PATH="$HOME/.local/bin:$PATH"
|
|||
|
alias sb="stack build"
|
|||
|
alias gp="git add -p"
|
|||
|
# source $HOME/.config/gf/config
|
|||
|
alias ide='ghcid -c "stack ghci --test --ghci-options=-fno-break-on-exception --ghci-options=-fno-break-on-error --ghci-options=-v1 --ghci-options=-ferror-spans --ghci-options=-j"'
|
|||
|
export PAGER="less -FX"
|