chore(zsh): add fold markers

This commit is contained in:
Stefan Imhoff
2021-12-03 19:06:04 +01:00
parent eb30ebedfb
commit 5819e2bc9f

21
zshrc
View File

@@ -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 youre 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 Apples 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
# }}}