mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
style: format shell scripts
This commit is contained in:
parent
8c5babe80a
commit
76b5fd4118
18 changed files with 231 additions and 242 deletions
|
|
@ -4,7 +4,6 @@
|
||||||
# Sourced by user's zshrc if is Linux 在用户的 zshrc 中被引用
|
# Sourced by user's zshrc if is Linux 在用户的 zshrc 中被引用
|
||||||
# Entry point in $DOTFILES/tools/zsh/common.zshrc (入口点)
|
# Entry point in $DOTFILES/tools/zsh/common.zshrc (入口点)
|
||||||
|
|
||||||
|
|
||||||
if [ -n "$WAYLAND_DISPLAY" ]; then
|
if [ -n "$WAYLAND_DISPLAY" ]; then
|
||||||
alias clip="wl-copy"
|
alias clip="wl-copy"
|
||||||
alias paste="wl-paste"
|
alias paste="wl-paste"
|
||||||
|
|
|
||||||
|
|
@ -8,15 +8,19 @@ if [ "$PERCENTAGE" = "" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "${PERCENTAGE}" in
|
case "${PERCENTAGE}" in
|
||||||
9[0-9]|100) ICON=""
|
9[0-9] | 100)
|
||||||
|
ICON=""
|
||||||
;;
|
;;
|
||||||
[6-8][0-9]) ICON=""
|
[6-8][0-9])
|
||||||
|
ICON=""
|
||||||
;;
|
;;
|
||||||
[3-5][0-9]) ICON=""
|
[3-5][0-9])
|
||||||
|
ICON=""
|
||||||
;;
|
;;
|
||||||
[1-2][0-9]) ICON=""
|
[1-2][0-9])
|
||||||
|
ICON=""
|
||||||
;;
|
;;
|
||||||
*) ICON=""
|
*) ICON="" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ "$CHARGING" != "" ]]; then
|
if [[ "$CHARGING" != "" ]]; then
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,3 @@
|
||||||
# https://felixkratz.github.io/SketchyBar/config/events#events-and-scripting
|
# https://felixkratz.github.io/SketchyBar/config/events#events-and-scripting
|
||||||
|
|
||||||
sketchybar --set "$NAME" label="$(date '+%d日周%u %H:%M')"
|
sketchybar --set "$NAME" label="$(date '+%d日周%u %H:%M')"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
music_info=$(curlie GET http://localhost:10767/api/v1/playback/now-playing | jq -r '"\(.info.name) - \(.info.artistName)"')
|
music_info=$(curlie GET http://localhost:10767/api/v1/playback/now-playing | jq -r '"\(.info.name) - \(.info.artistName)"')
|
||||||
|
|
||||||
|
|
||||||
ICON=""
|
ICON=""
|
||||||
|
|
||||||
sketchybar --set $NAME label="$music_info" icon="$ICON"
|
sketchybar --set $NAME label="$music_info" icon="$ICON"
|
||||||
|
|
|
||||||
|
|
@ -7,13 +7,16 @@ if [ "$SENDER" = "volume_change" ]; then
|
||||||
VOLUME="$INFO"
|
VOLUME="$INFO"
|
||||||
|
|
||||||
case "$VOLUME" in
|
case "$VOLUME" in
|
||||||
[6-9][0-9]|100) ICON=""
|
[6-9][0-9] | 100)
|
||||||
|
ICON=""
|
||||||
;;
|
;;
|
||||||
[3-5][0-9]) ICON=""
|
[3-5][0-9])
|
||||||
|
ICON=""
|
||||||
;;
|
;;
|
||||||
[1-9]|[1-2][0-9]) ICON=""
|
[1-9] | [1-2][0-9])
|
||||||
|
ICON=""
|
||||||
;;
|
;;
|
||||||
*) ICON=""
|
*) ICON="" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
sketchybar --set "$NAME" icon="$ICON" label="$VOLUME%"
|
sketchybar --set "$NAME" icon="$ICON" label="$VOLUME%"
|
||||||
|
|
|
||||||
|
|
@ -42,9 +42,8 @@ sketchybar --default "${default[@]}"
|
||||||
# to indicate active and available mission control spaces.
|
# to indicate active and available mission control spaces.
|
||||||
|
|
||||||
SPACE_ICONS=("" "" "" "" "" "" "7" "8" "9" "10")
|
SPACE_ICONS=("" "" "" "" "" "" "7" "8" "9" "10")
|
||||||
for i in "${!SPACE_ICONS[@]}"
|
for i in "${!SPACE_ICONS[@]}"; do
|
||||||
do
|
sid="$(($i + 1))"
|
||||||
sid="$(($i+1))"
|
|
||||||
space=(
|
space=(
|
||||||
space="$sid"
|
space="$sid"
|
||||||
icon="${SPACE_ICONS[i]}"
|
icon="${SPACE_ICONS[i]}"
|
||||||
|
|
@ -101,7 +100,6 @@ sketchybar --set music \
|
||||||
##### Force all scripts to run the first time (never do this in a script) #####
|
##### Force all scripts to run the first time (never do this in a script) #####
|
||||||
sketchybar --update
|
sketchybar --update
|
||||||
|
|
||||||
|
|
||||||
sketchybar --add event aerospace_workspace_change
|
sketchybar --add event aerospace_workspace_change
|
||||||
|
|
||||||
for sid in $(aerospace list-workspaces --all); do
|
for sid in $(aerospace list-workspaces --all); do
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ alias paste="pbpaste"
|
||||||
|
|
||||||
# >>> conda initialize >>>
|
# >>> conda initialize >>>
|
||||||
# !! Contents within this block are managed by 'conda init' !!
|
# !! Contents within this block are managed by 'conda init' !!
|
||||||
__conda_setup="$('/opt/homebrew/Caskroom/miniconda/base/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
|
__conda_setup="$('/opt/homebrew/Caskroom/miniconda/base/bin/conda' 'shell.zsh' 'hook' 2>/dev/null)"
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
eval "$__conda_setup"
|
eval "$__conda_setup"
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ export IS_WSL=true
|
||||||
export ARCHFLAGS="-arch x86_64"
|
export ARCHFLAGS="-arch x86_64"
|
||||||
source $DOTFILES/platforms/wsl/winterop.zsh
|
source $DOTFILES/platforms/wsl/winterop.zsh
|
||||||
|
|
||||||
|
|
||||||
### Misc ###
|
### Misc ###
|
||||||
|
|
||||||
export PATH=/opt/bin:$PATH
|
export PATH=/opt/bin:$PATH
|
||||||
|
|
@ -18,7 +17,7 @@ export PATH=/opt/bin:$PATH
|
||||||
|
|
||||||
# >>> conda initialize >>>
|
# >>> conda initialize >>>
|
||||||
# !! Contents within this block are managed by 'conda init' !!
|
# !! Contents within this block are managed by 'conda init' !!
|
||||||
__conda_setup="$('$HOME/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
|
__conda_setup="$('$HOME/miniconda3/bin/conda' 'shell.zsh' 'hook' 2>/dev/null)"
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
eval "$__conda_setup"
|
eval "$__conda_setup"
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@ alias ipy=ipython
|
||||||
|
|
||||||
alias g=lazygit
|
alias g=lazygit
|
||||||
|
|
||||||
|
|
||||||
# lsd - modern ls
|
# lsd - modern ls
|
||||||
if command -v lsd >/dev/null 2>&1; then
|
if command -v lsd >/dev/null 2>&1; then
|
||||||
alias ls='lsd'
|
alias ls='lsd'
|
||||||
|
|
@ -41,28 +40,26 @@ else
|
||||||
alias ll='ls -l'
|
alias ll='ls -l'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Functions #
|
# Functions #
|
||||||
mkcd() {
|
mkcd() {
|
||||||
mkdir -p $1 && cd $1
|
mkdir -p $1 && cd $1
|
||||||
}
|
}
|
||||||
cdls(){
|
cdls() {
|
||||||
cd $1 && ls
|
cd $1 && ls
|
||||||
}
|
}
|
||||||
tc(){
|
tc() {
|
||||||
touch $1 && code $1
|
touch $1 && code $1
|
||||||
}
|
}
|
||||||
tv(){
|
tv() {
|
||||||
touch $1 && nvim $1
|
touch $1 && nvim $1
|
||||||
}
|
}
|
||||||
mt(){
|
mt() {
|
||||||
mkdir -p $(dirname $1) && touch $1
|
mkdir -p $(dirname $1) && touch $1
|
||||||
}
|
}
|
||||||
mtv(){
|
mtv() {
|
||||||
mkdir -p $(dirname $1) && touch $1 && nvim $1
|
mkdir -p $(dirname $1) && touch $1 && nvim $1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
alias update="source $DOTFILES/scripts/update.zsh"
|
alias update="source $DOTFILES/scripts/update.zsh"
|
||||||
|
|
||||||
if command -v pacman >/dev/null 2>&1; then
|
if command -v pacman >/dev/null 2>&1; then
|
||||||
|
|
@ -97,7 +94,6 @@ if command -v brew >/dev/null 2>&1; then
|
||||||
alias brewl="brew list"
|
alias brewl="brew list"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# `-s` suffix alias
|
# `-s` suffix alias
|
||||||
# % readme.md -> glow readme.md
|
# % readme.md -> glow readme.md
|
||||||
alias -s {md,markdown}=glow
|
alias -s {md,markdown}=glow
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@ SAVEHIST=10000
|
||||||
export LANG=zh_CN.UTF-8
|
export LANG=zh_CN.UTF-8
|
||||||
export LC_ALL=zh_CN.UTF-8
|
export LC_ALL=zh_CN.UTF-8
|
||||||
|
|
||||||
|
|
||||||
# Manually manage plugins 手动管理插件
|
# Manually manage plugins 手动管理插件
|
||||||
# Load zsh-syntax-highlighting before zsh-history-substring-search
|
# Load zsh-syntax-highlighting before zsh-history-substring-search
|
||||||
# Reference: https://github.com/zsh-users/zsh-history-substring-search?tab=readme-ov-file#usage
|
# Reference: https://github.com/zsh-users/zsh-history-substring-search?tab=readme-ov-file#usage
|
||||||
|
|
@ -37,7 +36,6 @@ for plugin in "${plugins[@]}"; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
# https://unix.stackexchange.com/questions/33994/
|
# https://unix.stackexchange.com/questions/33994/
|
||||||
# Use `set -k` to mark leading `#` as a comment character
|
# Use `set -k` to mark leading `#` as a comment character
|
||||||
set -k
|
set -k
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
# Author: js0ny
|
# Author: js0ny
|
||||||
# Sourced by user's zshrc 在用户的 zshrc 中被引用
|
# Sourced by user's zshrc 在用户的 zshrc 中被引用
|
||||||
|
|
||||||
|
|
||||||
# read key: `fish_key_reader`
|
# read key: `fish_key_reader`
|
||||||
# get current bindings: `bindkey`
|
# get current bindings: `bindkey`
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,6 @@
|
||||||
# Author: js0ny
|
# Author: js0ny
|
||||||
# Sourced by user's zshrc 在用户的 zshrc 中被引用
|
# Sourced by user's zshrc 在用户的 zshrc 中被引用
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Absolute navigation #
|
# Absolute navigation #
|
||||||
alias dotfiles="cd $DOTFILES && ls"
|
alias dotfiles="cd $DOTFILES && ls"
|
||||||
if [ "$IS_WSL" = true ]; then # IS_WSL is defined in $DOTFILES/platforms/wsl/zshrc
|
if [ "$IS_WSL" = true ]; then # IS_WSL is defined in $DOTFILES/platforms/wsl/zshrc
|
||||||
|
|
@ -28,19 +26,18 @@ if [ "$(uname)" = "Darwin" ]; then
|
||||||
alias gdrive="cd $HOME/Google Drive"
|
alias gdrive="cd $HOME/Google Drive"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if command -v zoxide >/dev/null 2>&1; then
|
if command -v zoxide >/dev/null 2>&1; then
|
||||||
eval "$(zoxide init zsh)"
|
eval "$(zoxide init zsh)"
|
||||||
# Relative navigation #
|
# Relative navigation #
|
||||||
alias ..="z .."
|
alias ..="z .."
|
||||||
alias ...="z ../.."
|
alias ...="z ../.."
|
||||||
alias ....="z ../../.."
|
alias ....="z ../../.."
|
||||||
alias .....="z ../../../.."
|
alias .....="z ../../../.."
|
||||||
alias ......="z ../../../../.."
|
alias ......="z ../../../../.."
|
||||||
# Use `-` to jump to the previous directory
|
# Use `-` to jump to the previous directory
|
||||||
# Oh-My-Zsh defines a similar one
|
# Oh-My-Zsh defines a similar one
|
||||||
alias - "z -"
|
alias - "z -"
|
||||||
zls(){
|
zls() {
|
||||||
cd $1 && ls
|
cd $1 && ls
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,4 @@
|
||||||
# Author: js0ny
|
# Author: js0ny
|
||||||
# Sourced by user's zshrc 在用户的 zshrc 中被引用
|
# Sourced by user's zshrc 在用户的 zshrc 中被引用
|
||||||
|
|
||||||
|
|
||||||
eval "$(starship init zsh)"
|
eval "$(starship init zsh)"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,50 +55,50 @@ if [ "$(uname)" = "Linux" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Azure CLI
|
# Azure CLI
|
||||||
if command -v az > /dev/null; then
|
if command -v az >/dev/null; then
|
||||||
export AZURE_CONFIG_DIR="$XDG_DATA_HOME"/azure
|
export AZURE_CONFIG_DIR="$XDG_DATA_HOME"/azure
|
||||||
fi
|
fi
|
||||||
# Bun JS
|
# Bun JS
|
||||||
# mv ~/.bun $XDG_DATA_HOME/bun
|
# mv ~/.bun $XDG_DATA_HOME/bun
|
||||||
# ln -sf $XDG_DATA_HOME/bun/bin/bun ~/.local/bin/bun
|
# ln -sf $XDG_DATA_HOME/bun/bin/bun ~/.local/bin/bun
|
||||||
if command -v bun > /dev/null; then
|
if command -v bun >/dev/null; then
|
||||||
export BUN_INSTALL="$XDG_DATA_HOME"/bun
|
export BUN_INSTALL="$XDG_DATA_HOME"/bun
|
||||||
export PATH="$BUN_INSTALL/bin:$PATH"
|
export PATH="$BUN_INSTALL/bin:$PATH"
|
||||||
[ -s "$BUN_INSTALL/_bun" ] && source "$BUN_INSTALL/_bun"
|
[ -s "$BUN_INSTALL/_bun" ] && source "$BUN_INSTALL/_bun"
|
||||||
fi
|
fi
|
||||||
# Cargo
|
# Cargo
|
||||||
if command -v cargo > /dev/null; then
|
if command -v cargo >/dev/null; then
|
||||||
export CARGO_HOME="$XDG_DATA_HOME"/cargo
|
export CARGO_HOME="$XDG_DATA_HOME"/cargo
|
||||||
export PATH="$CARGO_HOME/bin:$PATH"
|
export PATH="$CARGO_HOME/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
# CGDB
|
# CGDB
|
||||||
if command -v cgdb > /dev/null; then
|
if command -v cgdb >/dev/null; then
|
||||||
export CGDB_DIR="$XDG_CONFIG_HOME"/cgdb
|
export CGDB_DIR="$XDG_CONFIG_HOME"/cgdb
|
||||||
fi
|
fi
|
||||||
# .NET
|
# .NET
|
||||||
if command -v dotnet > /dev/null; then
|
if command -v dotnet >/dev/null; then
|
||||||
export DOTNET_CLI_HOME="$XDG_DATA_HOME"/dotnet
|
export DOTNET_CLI_HOME="$XDG_DATA_HOME"/dotnet
|
||||||
export PATH="$DOTNET_CLI_HOME/.dotnet/tools:$PATH"
|
export PATH="$DOTNET_CLI_HOME/.dotnet/tools:$PATH"
|
||||||
fi
|
fi
|
||||||
# Docker
|
# Docker
|
||||||
if command -v docker > /dev/null; then
|
if command -v docker >/dev/null; then
|
||||||
export DOCKER_CONFIG="$XDG_CONFIG_HOME"/docker
|
export DOCKER_CONFIG="$XDG_CONFIG_HOME"/docker
|
||||||
fi
|
fi
|
||||||
# GnuPG
|
# GnuPG
|
||||||
if command -v gpg > /dev/null; then
|
if command -v gpg >/dev/null; then
|
||||||
export GNUPGHOME="$XDG_DATA_HOME"/gnupg
|
export GNUPGHOME="$XDG_DATA_HOME"/gnupg
|
||||||
fi
|
fi
|
||||||
# Go
|
# Go
|
||||||
if command -v go > /dev/null; then
|
if command -v go >/dev/null; then
|
||||||
export GOPATH="$XDG_DATA_HOME"/go
|
export GOPATH="$XDG_DATA_HOME"/go
|
||||||
export PATH="$GOPATH/bin:$PATH"
|
export PATH="$GOPATH/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
# Julia
|
# Julia
|
||||||
if command -v julia > /dev/null; then
|
if command -v julia >/dev/null; then
|
||||||
export JULIA_DEPOT_PATH="$XDG_DATA_HOME/julia:$JULIA_DEPOT_PATH"
|
export JULIA_DEPOT_PATH="$XDG_DATA_HOME/julia:$JULIA_DEPOT_PATH"
|
||||||
fi
|
fi
|
||||||
# Node.js
|
# Node.js
|
||||||
if command -v node > /dev/null; then
|
if command -v node >/dev/null; then
|
||||||
export NODE_REPL_HISTORY="$XDG_STATE_HOME"/node/repl_history
|
export NODE_REPL_HISTORY="$XDG_STATE_HOME"/node/repl_history
|
||||||
export TS_NODE_REPL_HISTORY="$XDG_STATE_HOME"/node/ts_node_repl_history
|
export TS_NODE_REPL_HISTORY="$XDG_STATE_HOME"/node/ts_node_repl_history
|
||||||
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc
|
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc
|
||||||
|
|
@ -107,22 +107,22 @@ if command -v node > /dev/null; then
|
||||||
export NPM_CONFIG_TMP="$XDG_RUNTIME_DIR"/npm
|
export NPM_CONFIG_TMP="$XDG_RUNTIME_DIR"/npm
|
||||||
fi
|
fi
|
||||||
# Parallel
|
# Parallel
|
||||||
if command -v parallel > /dev/null; then
|
if command -v parallel >/dev/null; then
|
||||||
export PARALLEL_HOME="$XDG_CONFIG_HOME"/parallel
|
export PARALLEL_HOME="$XDG_CONFIG_HOME"/parallel
|
||||||
fi
|
fi
|
||||||
# Python
|
# Python
|
||||||
# Works only with Python 3.13.0a3 and later
|
# Works only with Python 3.13.0a3 and later
|
||||||
if command -v python3 > /dev/null; then
|
if command -v python3 >/dev/null; then
|
||||||
export PYTHON_HISTORY="$XDG_DATA_HOME"/python/history
|
export PYTHON_HISTORY="$XDG_DATA_HOME"/python/history
|
||||||
fi
|
fi
|
||||||
# GNU Screen
|
# GNU Screen
|
||||||
if command -v screen > /dev/null; then
|
if command -v screen >/dev/null; then
|
||||||
export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc
|
export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc
|
||||||
export SCREENDIR="${XDG_RUNTIME_DIR}/screen"
|
export SCREENDIR="${XDG_RUNTIME_DIR}/screen"
|
||||||
fi
|
fi
|
||||||
# Ruby Gem
|
# Ruby Gem
|
||||||
# Ruby Gem
|
# Ruby Gem
|
||||||
if command -v gem > /dev/null; then
|
if command -v gem >/dev/null; then
|
||||||
setopt nullglob
|
setopt nullglob
|
||||||
for dir in "$HOME/.local/share/gem/ruby/"*/bin; do
|
for dir in "$HOME/.local/share/gem/ruby/"*/bin; do
|
||||||
if [ -d "$dir" ]; then
|
if [ -d "$dir" ]; then
|
||||||
|
|
@ -132,33 +132,33 @@ if command -v gem > /dev/null; then
|
||||||
unsetopt nullglob
|
unsetopt nullglob
|
||||||
fi
|
fi
|
||||||
# Spacemacs
|
# Spacemacs
|
||||||
if command -v emacs > /dev/null; then
|
if command -v emacs >/dev/null; then
|
||||||
export SPACEMACSDIR="$XDG_CONFIG_HOME"/spacemacs
|
export SPACEMACSDIR="$XDG_CONFIG_HOME"/spacemacs
|
||||||
fi
|
fi
|
||||||
# tldr
|
# tldr
|
||||||
# Works only with C client (did not verify)
|
# Works only with C client (did not verify)
|
||||||
if command -v tldr > /dev/null; then
|
if command -v tldr >/dev/null; then
|
||||||
export TLDR_CACHE_DIR="$XDG_CACHE_HOME"/tldr
|
export TLDR_CACHE_DIR="$XDG_CACHE_HOME"/tldr
|
||||||
fi
|
fi
|
||||||
# W3M
|
# W3M
|
||||||
if command -v w3m > /dev/null; then
|
if command -v w3m >/dev/null; then
|
||||||
export W3M_DIR="$XDG_DATA_HOME"/w3m
|
export W3M_DIR="$XDG_DATA_HOME"/w3m
|
||||||
fi
|
fi
|
||||||
# Wakatime
|
# Wakatime
|
||||||
if command -v wakatime > /dev/null; then
|
if command -v wakatime >/dev/null; then
|
||||||
export WAKATIME_HOME="$XDG_CONFIG_HOME/wakatime"
|
export WAKATIME_HOME="$XDG_CONFIG_HOME/wakatime"
|
||||||
fi
|
fi
|
||||||
# Wget
|
# Wget
|
||||||
if command -v wget > /dev/null; then
|
if command -v wget >/dev/null; then
|
||||||
alias wget='wget --hsts-file="$XDG_CACHE_HOME/wget-hsts"'
|
alias wget='wget --hsts-file="$XDG_CACHE_HOME/wget-hsts"'
|
||||||
fi
|
fi
|
||||||
# z
|
# z
|
||||||
if command -v z > /dev/null; then
|
if command -v z >/dev/null; then
|
||||||
export _Z_DATA="$XDG_DATA_HOME/z"
|
export _Z_DATA="$XDG_DATA_HOME/z"
|
||||||
fi
|
fi
|
||||||
# zsh .zcompdump
|
# zsh .zcompdump
|
||||||
# compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-"$ZSH_VERSION"
|
# compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-"$ZSH_VERSION"
|
||||||
# Vcpkg
|
# Vcpkg
|
||||||
if command -v vcpkg > /dev/null; then
|
if command -v vcpkg >/dev/null; then
|
||||||
export VCPKG_ROOT="$XDG_DATA_HOME"/vcpkg
|
export VCPKG_ROOT="$XDG_DATA_HOME"/vcpkg
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
|
|
@ -24,9 +24,9 @@ case "$(uname)" in
|
||||||
# macOS-specific configuration
|
# macOS-specific configuration
|
||||||
source "$DOTFILES/platforms/mac/zshrc"
|
source "$DOTFILES/platforms/mac/zshrc"
|
||||||
;;
|
;;
|
||||||
# CYGWIN*|MINGW*|MSYS*)
|
# CYGWIN*|MINGW*|MSYS*)
|
||||||
# source "$DOTFILES/platform/wsl.zsh"
|
# source "$DOTFILES/platform/wsl.zsh"
|
||||||
# ;;
|
# ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
for file in $DOTFILES/tools/zsh/mod/*.zsh; do
|
for file in $DOTFILES/tools/zsh/mod/*.zsh; do
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue