dotfiles/root/.zshrc

60 lines
1.2 KiB
Bash

# Common settings
export PATH=$HOME/apps/bin:$PATH
export EDITOR="/usr/bin/vim"
# export SSH_KEY_PATH="~/.ssh/rsa_id"
# export ARCHFLAGS="-arch x86_64"
# NVM
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# Tuning for urxvt
xset -b
clear
# ZSH settings
export ZSH="/home/odd/.oh-my-zsh"
# ZSH_CUSTOM=/path/to/new-custom-folder
ZSH_THEME="minimal"
CASE_SENSITIVE="false"
MODE_INDICATOR="%F{yellow}#%f"
VI_MODE_CURSOR_INSERT=2
VI_MODE_RESET_PROMPT_ON_MODE_CHANGE=true
plugins=(
git
vi-mode
fancy-ctrl-z
fzf
)
source $ZSH/oh-my-zsh.sh
# Aliases
alias fakemsg='echo "$(curl -s https://whatthecommit.com/index.txt)"'
alias ncdu='ncdu --color off'
## git
alias ga.='ga . && gst'
alias gcmsgrnd='git commit -m "$(fakemsg)"'
## Servers
alias here-http='hostname -I && python3 -m http.server'
alias here-http-cors='npx http-server -p 8080 --cors'
alias here-https='PORT=8080 npx https-localhost'
## Copy from terminal
# See .XResources
alias ccc='vim -c "norm G" /tmp/urxvt-screen-content.txt'