all repos — dotfiles @ 2c9ee4492e49a3d4e72443cfcddc6876f0d8c53a

my *nix dotfiles

zsh/.zshrc (view raw)

 1#               __             
 2#   ____  _____/ /_  __________
 3#  /_  / / ___/ __ \/ ___/ ___/
 4# _ / /_(__  ) / / / /  / /__  
 5#(_)___/____/_/ /_/_/   \___/  
 6#
 7
 8# export thingys
 9export ZSH=/home/icyphox/.oh-my-zsh
10export BROWSER=/usr/bin/firefox-nightly
11export EDITOR=/usr/bin/nvim
12export SSH_KEY_PATH="~/.ssh/id_rsa"
13export GOROOT=$HOME/go
14export PATH=$PATH:$GOROOT/bin
15export PATH=$PATH:$HOME/bin
16export GPG_TTY=$(tty)
17export INPUTRC=~/.inputrc
18
19# theme specefic
20ZSH_THEME="simple"
21
22# plugins
23plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
24
25# sourced scripts
26source $ZSH/oh-my-zsh.sh
27source /usr/share/autojump/autojump.zsh
28source $HOME/.cargo/env
29
30# aliases
31alias icysite="cd ~/leet/icysite"
32alias scrot="~/bin/scrot.sh"
33alias icyinfo="~/bin/icyinfo.sh"
34alias gah='sudo $(fc -ln -1)'
35alias nvime='nvim ~/.config/nvim/init.vim'
36alias up="~/bin/icyup.sh"
37alias envac="source .env/bin/activate"
38alias vim="nvim"
39alias vi="nvim"
40alias sxiv="sxiv -b"
41alias todo="todo.sh"
42alias ls="exa"
43alias la="exa -al"
44alias warcraft="wine Warcraft/Frozen\ Throne.exe -opengl"
45
46# end and home keys
47bindkey "^[[1~" beginning-of-line
48bindkey "^[[4~" end-of-line
49
50[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
51
52# Defer initialization of nvm until nvm, node or a node-dependent command is
53# run. Ensure this block is only run once if .bashrc gets sourced multiple times
54# by checking whether __init_nvm is a function.
55if [ -s "$HOME/.nvm/nvm.sh" ] && [ ! "$(type __init_nvm)" = function ]; then
56  export NVM_DIR="$HOME/.nvm"
57  [ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion"
58  declare -a __node_commands=('nvm' 'node' 'npm' 'yarn' 'gulp' 'grunt' 'webpack')
59  function __init_nvm() {
60    for i in "${__node_commands[@]}"; do unalias $i; done
61    . "$NVM_DIR"/nvm.sh
62    unset __node_commands
63    unset -f __init_nvm
64  }
65  for i in "${__node_commands[@]}"; do alias $i='__init_nvm && '$i; done
66fi
67
68# base16-shell
69BASE16_SHELL=$HOME/.config/base16-shell/
70[ -n "$PS1" ] && [ -s $BASE16_SHELL/profile_helper.sh ] && eval "$($BASE16_SHELL/profile_helper.sh)"
71