From 5819e2bc9f3412ec0ac83aa922aee2f2f1cf32ef Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 3 Dec 2021 19:06:04 +0100 Subject: [PATCH] chore(zsh): add fold markers --- zshrc | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/zshrc b/zshrc index b9d74d1..a7c50d2 100644 --- a/zshrc +++ b/zshrc @@ -1,5 +1,4 @@ -# *** *** Plugins *** *** -# *********************** +# {{{ *** *** Plugins *** *** # Load Antigen plugin manager source ~/.dotfiles/.antigen/antigen.zsh @@ -48,9 +47,8 @@ antigen bundle zsh-users/zsh-syntax-highlighting # Tell Antigen that you’re done antigen apply - -# *** *** Configuration *** *** -# ***************************** +# }}} +# {{{ *** *** Configuration *** *** CASE_SENSITIVE="true" # Case-sensitive completion DISABLE_AUTO_TITLE="true" # Disable auto-setting terminal title @@ -80,8 +78,8 @@ BASE16_SHELL="$HOME/.config/base16-shell/" [ -s "$BASE16_SHELL/profile_helper.sh" ] && \ eval "$("$BASE16_SHELL/profile_helper.sh")" -# *** *** Aliases *** *** -# *********************** +# }}} +# {{{ *** *** Aliases *** *** # Folders alias ...='cd ../..' @@ -173,10 +171,15 @@ alias cleanup="find . -type f -name '*.DS_Store' -ls -delete" # Also, clear Apple’s System Logs to improve shell startup speed alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo rm -rfv /private/var/log/asl/*.asl" +# }}} +# {{{ *** *** Functions *** *** -# *** *** Shell *** *** -# ********************* +# }}} +# {{{ *** *** Shell *** *** # Starship eval "$(starship init zsh)" +clear + +# }}}