Compare commits

..

No commits in common. "320470fc4ee03b2e9d57ebd18ce6a9a23ca94fb9" and "ebe804da8bc4988106235f37fc268fae05dc64a7" have entirely different histories.

3 changed files with 6 additions and 31 deletions

View file

@ -28,6 +28,7 @@ else
fi
# Reload neovim theme
local keys
if [ "$MODE" = "light" ]; then
keys=$'<C-\\><C-n>:silent! let g:light_mode=1 | set background=light | doautocmd ColorScheme | redraw!<CR>'
else

View file

@ -1,14 +1,12 @@
# --- Basics
font-family = "IosevkaTermSlab Nerd Font Propo"
font-style = "Regular"
font-size = 12
font-size = 13
background-opacity = 1.0
window-decoration = none
confirm-close-surface = false
# Auto light/dark theme pair that matches your two palettes below
#theme = dark:my-dark,light:my-light
theme = zenwritten-dark
theme = zenwritten-light
# Font-size keybindings (match Ctrl+Shift+j/k from WezTerm)
keybind = all:ctrl+shift+k=increase_font_size:1

View file

@ -1,6 +1,7 @@
#==============================================================================
# Zsh Configuration
#==============================================================================
# History settings
HISTFILE=~/.histfile
HISTSIZE=100000
@ -61,33 +62,9 @@ zstyle -e ':completion:*:hosts' hosts 'reply=(
#==============================================================================
# nvm
# Lazy-load nvm - only initialize when first used
export NVM_DIR="$HOME/.nvm"
# Function to load nvm (called only once)
load_nvm() {
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
}
# Create placeholder functions that load nvm once, then call the real command
nvm() {
unset -f nvm node npm
load_nvm
nvm "$@"
}
node() {
unset -f nvm node npm
load_nvm
node "$@"
}
npm() {
unset -f nvm node npm
load_nvm
npm "$@"
}
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# ghcup
[ -f "/home/aselimov/.ghcup/env" ] && . "/home/aselimov/.ghcup/env" # ghcup-env
@ -135,4 +112,3 @@ if [ "$(uname)" = "Darwin" ]; then
else
alias ls="ls --classify --group-directories-first --color"
fi