-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
41 lines (30 loc) · 928 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
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
LC_CTYPE=en_US.UTF-8
LC_ALL=en_US.UTF-8
LC_TIME=en_US.UTF-8
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/phcurado/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
zstyle ':completion:*' menu select
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
eval "$(zoxide init zsh)"
eval "$(/usr/bin/mise activate zsh)"
export FLYCTL_INSTALL="/home/phcurado/.fly"
export PATH="$FLYCTL_INSTALL/bin:$PATH"
alias tmux="tmux -2"
alias ls="eza --icons=always"
alias cat="bat"
alias n="nvim"
# Keys
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
source <(fzf --zsh)
eval "$(starship init zsh)"