53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
#
|
||
# 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"
|