aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--alias4
-rw-r--r--profile2
-rw-r--r--zsh/zshrc9
3 files changed, 8 insertions, 7 deletions
diff --git a/alias b/alias
index 55198cf..520bdf4 100644
--- a/alias
+++ b/alias
@@ -157,6 +157,10 @@ alias gpg.config="$EDITOR ~/.gnupg/gpg-agent.conf"
157# }}} 157# }}}
158# MAIL {{{ 158# MAIL {{{
159alias smtp.conf='sudo vim /etc/smtpd/smtpd.conf' 159alias smtp.conf='sudo vim /etc/smtpd/smtpd.conf'
160alias mail.conf='sudo vim /etc/smtpd/smtpd.conf'
161alias mail.pass='sudo vim /etc/mail/passwd'
162alias mail.queue='sudo smtpctl show queue'
163alias mail.show='sudo smtpctl show'
160alias m='mutt' 164alias m='mutt'
161alias mutt.rc="$EDITOR ~/.config/mutt/muttrc" 165alias mutt.rc="$EDITOR ~/.config/mutt/muttrc"
162alias h='himalaya' 166alias h='himalaya'
diff --git a/profile b/profile
index 17de89d..3a48e0c 100644
--- a/profile
+++ b/profile
@@ -37,7 +37,7 @@ fi
37# Set zsh or bash 37# Set zsh or bash
38if [[ $- =~ i ]]; then 38if [[ $- =~ i ]]; then
39 if [[ $shell == zsh ]]; then 39 if [[ $shell == zsh ]]; then
40 setopt extended_glob 40 setopt extended_glob interactive_comments
41 fpath=($SETTING_DIR/zsh $fpath) 41 fpath=($SETTING_DIR/zsh $fpath)
42 alias history='history -i' 42 alias history='history -i'
43 autoload compinit; compinit 43 autoload compinit; compinit
diff --git a/zsh/zshrc b/zsh/zshrc
index d361cf5..3780340 100644
--- a/zsh/zshrc
+++ b/zsh/zshrc
@@ -141,11 +141,6 @@ bindkey '^[,' insert-first-word
141# Quick jump to parent folders 141# Quick jump to parent folders
142source $SETTING_DIR/zsh/bd.zsh 142source $SETTING_DIR/zsh/bd.zsh
143 143
144
145# Load my general settings
146source $SETTING_DIR/bin/init/load-settings.sh
147
148
149# Finally, make sure the terminal is in application mode, when zle is 144# Finally, make sure the terminal is in application mode, when zle is
150# active. Only then are the values from $terminfo valid. 145# active. Only then are the values from $terminfo valid.
151if (( ${+terminfo[smkx]} && ${+terminfo[rmkx]} )); then 146if (( ${+terminfo[smkx]} && ${+terminfo[rmkx]} )); then
@@ -162,4 +157,6 @@ case ":$PATH:" in
162 *":$PNPM_HOME:"*) ;; 157 *":$PNPM_HOME:"*) ;;
163 *) export PATH="$PNPM_HOME:$PATH" ;; 158 *) export PATH="$PNPM_HOME:$PATH" ;;
164esac 159esac
165# pnpm end \ No newline at end of file 160# pnpm end
161
162source $SETTING_DIR/profile