34 lines
762 B
Bash
34 lines
762 B
Bash
# Lines configured by zsh-newuser-install
|
|
HISTFILE=~/.histfile
|
|
HISTSIZE=1000
|
|
SAVEHIST=1000
|
|
unsetopt beep
|
|
bindkey -v
|
|
|
|
# End of lines configured by zsh-newuser-install
|
|
# The following lines were added by compinstall
|
|
zstyle :compinstall filename '/home/dqnid/.zshrc'
|
|
|
|
autoload -Uz compinit
|
|
compinit
|
|
# End of lines added by compinstall
|
|
|
|
# Path
|
|
export NVM_DIR="$HOME/.nvm"
|
|
export PATH="/home/dqnid/.local/bin:$PATH"
|
|
|
|
# Aliases
|
|
alias r=ranger
|
|
alias v=nvim
|
|
alias sv="sudo nvim"
|
|
alias n="nnn -e"
|
|
alias gs="git status --short"
|
|
alias gl="git log --graph --oneline --all"
|
|
alias nvm_init='[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"'
|
|
|
|
eval "$(starship init zsh)"
|
|
eval "$(zoxide init zsh)"
|
|
|
|
export NVM_DIR="$HOME/.nvm"
|
|
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|