all repos

dotfiles @ b11c53f63484469afdfc65a90853d62a01c7d43a

my dotfiles

zshrc (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
export PATH="$HOME/.yarn/bin:$HOME/bin:$HOME/.application:$HOME/.local/bin:$PATH"

### Oh my zsh ###
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="simple"              # Set theme.
#CASE_SENSITIVE="true"          # Use case-sensitive completion.
#HYPHEN_INSENSITIVE="true"      # Case-sensitive completion must be off.
#DISABLE_AUTO_UPDATE="true"     # Disable bi-weekly auto-update checks.
DISABLE_UPDATE_PROMPT="true"    # Automatically update without prompting.
#DISABLE_MAGIC_FUNCTIONS="true" # If pasting URL and other text is messed up.
#DISABLE_LS_COLORS="true"       # Disable colors in ls.
DISABLE_AUTO_TITLE="true"       # Disable auto-setting terminal title.
#ENABLE_CORRECTION="true"       # Enable command auto-correction.
#COMPLETION_WAITING_DOTS="true" # Display red dots whilst waiting for completion.
export UPDATE_ZSH_DAYS=7        # Change how often to auto-update.

plugins=(yarn nvm)
source $ZSH/oh-my-zsh.sh

### Variables
export EDITOR="nvim"
export VISUAL="nvim"

### Functions
bgcolor() {
    convert -size 1x1 xc:"#$1" /tmp/bgc.png
    feh --bg-tile /tmp/bgc.png
}
backup() {
    cp $1 $1.bak
}

### Aliases
alias cls="clear"
alias mkdir="mkdir -p"
alias cp="cp -r"
alias du="du -sh"
alias vim="nvim"
alias vi="vim"
alias d="docker"
alias wiki="vi +Wiki"
alias tmux="tmux -2"
alias :q="exit"
alias ..="cd .."
alias ...="cd ../.."