-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_zshrc
34 lines (29 loc) · 841 Bytes
/
dot_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
# Set name of the theme to load.
ZSH_THEME="kolo"
# Plugins
plugins=(git brew colorize gem node npm zsh_reload zsh-autosuggestions)
source ~/dotfiles/zsh/aliases
source ~/dotfiles/zsh/exports
source ~/dotfiles/zsh/functions
source ~/dotfiles/zsh/path
source ~/dotfiles/zsh/private
source $ZSH/oh-my-zsh.sh
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
# Initializers
. /opt/homebrew/opt/asdf/libexec/asdf.sh
# if [ -z "$TMUX" ]; then
# fg-widget() {
# stty icanon echo pendin -inlcr < /dev/tty
# stty discard '^O' dsusp '^Y' lnext '^V' quit '^\' susp '^Z' < /dev/tty
# zle reset-prompt
# if jobs %- >/dev/null 2>&1; then
# fg %-
# else
# fg
# fi
# }
# zle -N fg-widget
# bindkey -M emacs "^Z" fg-widget
# bindkey -M vicmd "^Z" fg-widget
# bindkey -M viins "^Z" fg-widget
# fi