-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
43 lines (34 loc) · 956 Bytes
/
.zshrc
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
# To reproduce this config, install starship, lsd,
# aliases
alias ls="lsd"
alias ~="cd ~"
alias ..="cd .."
alias ...='cd ../..'
alias ....='cd ../../..'
alias -- -='cd -'
alias la='ls -a'
alias ll='ls -l'
alias lla='ls -la'
alias lt='ls --tree'
alias dotfiles='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
# make zsh history work like bash
alias history="history 1"
. "$HOME/.asdf/asdf.sh"
# path mods
PATH=$PATH:/home/chiggins/.yarn/bin
# Lines configured by zsh-newuser-install
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
setopt autocd
unsetopt beep
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/chiggins/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
eval "$(starship init zsh)"
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh