File tree 1 file changed +14
-6
lines changed
1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ alias pa='$aurhelper -Ss' # list available package
71
71
alias pc=' $aurhelper -Sc' # remove unused cache
72
72
alias po=' $aurhelper -Qtdq | $aurhelper -Rns -' # remove unused packages, also try > $aurhelper -Qqd | $aurhelper -Rsu --print -
73
73
alias vc=' code' # gui code editor
74
- alias vim=' nvim'
74
+ alias vim=' nvim' # neovim
75
75
76
76
# Directory navigation shortcuts
77
77
alias ..=' cd ..'
@@ -80,23 +80,31 @@ alias .3='cd ../../..'
80
80
alias .4=' cd ../../../..'
81
81
alias .5=' cd ../../../../..'
82
82
83
- # Always mkdir a path (this doesn't inhibit functionality to make a single dir)
84
- alias mkdir=' mkdir -p'
85
-
86
83
# Titus
87
-
88
84
lazyg () {
89
85
git add .
90
86
git commit -m " $1 "
91
87
git push
92
88
}
93
89
90
+ # Always mkdir a path (this doesn't inhibit functionality to make a single dir)
91
+ alias mkdir=' mkdir -p'
92
+
94
93
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh
95
94
[[ ! -f ~ /.p10k.zsh ]] || source ~ /.p10k.zsh
96
95
97
96
# Display Pokemon
98
- pokemon-colorscripts --no-title -r 1,3,6
97
+ # pokemon-colorscripts --no-title -r 1,3,6
99
98
100
99
eval " $( zoxide init zsh) "
101
100
101
+ if [ -z " $TMUX " ]; then
102
+ tmux attach -d || tmux new
103
+ fi
104
+
105
+ nerdfetch
106
+
107
+ export NVM_DIR=" $HOME /.nvm"
108
+ [ -s " $NVM_DIR /nvm.sh" ] && \. " $NVM_DIR /nvm.sh" # This loads nvm
109
+ [ -s " $NVM_DIR /bash_completion" ] && \. " $NVM_DIR /bash_completion" # This loads nvm bash_completion
102
110
You can’t perform that action at this time.
0 commit comments