let me synchronize everything
Browse filesSigned-off-by: Balazs Horvath <[email protected]>
.zshrc
CHANGED
@@ -62,8 +62,6 @@ export GIN_MODE=release
|
|
62 |
# Set the system language and locale to Japanese UTF-8
|
63 |
export LANG=ja_JP.UTF-8
|
64 |
export LC_ALL=ja_JP.UTF-8
|
65 |
-
# Set the maximum number of commands to store in the shell history
|
66 |
-
export HISTSIZE=500000
|
67 |
# Set the path to the ComfyUI installation
|
68 |
export COMFYUI_PATH="$HOME/ComfyUI"
|
69 |
# Enable full backtrace for Rust programs
|
@@ -75,6 +73,14 @@ export DISABLE_TELEMETRY=YES
|
|
75 |
# Enable color output in the terminal (value might need adjustment)
|
76 |
export CLICOLOR=126
|
77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
# ⚠️ TODO: This needs to be benched but I'm too bad at this!
|
79 |
|
80 |
# Set the maximum number of threads for NumExpr library
|
@@ -985,7 +991,6 @@ print(json.loads(safetensors.safe_open(filePath, 'np').metadata().get('ss_seed',
|
|
985 |
|
986 |
source ~/toolkit/zsh/install_members.zsh
|
987 |
source ~/toolkit/zsh/gallery-dl.zsh
|
988 |
-
source ~/toolkit/zsh/png2mp4.zsh
|
989 |
|
990 |
# Function: c
|
991 |
# Description:
|
|
|
62 |
# Set the system language and locale to Japanese UTF-8
|
63 |
export LANG=ja_JP.UTF-8
|
64 |
export LC_ALL=ja_JP.UTF-8
|
|
|
|
|
65 |
# Set the path to the ComfyUI installation
|
66 |
export COMFYUI_PATH="$HOME/ComfyUI"
|
67 |
# Enable full backtrace for Rust programs
|
|
|
73 |
# Enable color output in the terminal (value might need adjustment)
|
74 |
export CLICOLOR=126
|
75 |
|
76 |
+
|
77 |
+
# Set the maximum number of commands to store in the shell history
|
78 |
+
export HISTSIZE=500000
|
79 |
+
# Disable automatic history syncing
|
80 |
+
alias no_history='unsetopt sharehistory'
|
81 |
+
# Create a custom command to manually sync history to the history file
|
82 |
+
alias save_history='fc -W'
|
83 |
+
|
84 |
# ⚠️ TODO: This needs to be benched but I'm too bad at this!
|
85 |
|
86 |
# Set the maximum number of threads for NumExpr library
|
|
|
991 |
|
992 |
source ~/toolkit/zsh/install_members.zsh
|
993 |
source ~/toolkit/zsh/gallery-dl.zsh
|
|
|
994 |
|
995 |
# Function: c
|
996 |
# Description:
|