Compare commits

..

No commits in common. "1db439f869a2efb03b34f2c6fc3fd54d5c166ed4" and "20bdd87a754f75fa2c3cb6c0bef2a18163f70864" have entirely different histories.

2 changed files with 4 additions and 13 deletions

8
.zshrc
View File

@ -1,5 +1,6 @@
source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
source /nix/var/nix/profiles/default/etc/profile.d/nix.sh
if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then
. "$HOME/.nix-profile/etc/profile.d/nix.sh"
fi
export BAT_THEME="Solarized (light)"
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
@ -94,6 +95,3 @@ alias z="$(which zoxide)"
[ -f "$HOME/.zshrc.local" ] && source "$HOME/.zshrc.local"
[ -f "$HOME/.zshrc.auto" ] && source "$HOME/.zshrc.auto"
FPATH="$HOME/.nix-profile/share/zsh/site-functions:${FPATH}"
autoload -Uz compinit && compinit

View File

@ -138,14 +138,6 @@ config.color_scheme = 'One Light (base16)'
config.window_background_opacity = 0.9
config.initial_rows = 30
config.initial_cols = 120
config.use_fancy_tab_bar = false
config.mouse_bindings = {
{
event = { Up = { streak = 1, button = 'Left' } },
mods = 'CTRL',
action = wezterm.action.OpenLinkAtMouseCursor,
},
}
return config
EOF
@ -244,6 +236,7 @@ AUTO_FILE="$HOME/.zshrc.auto"
echo > "$AUTO_FILE"
atuin init zsh >> "$AUTO_FILE"
direnv hook zsh >> "$AUTO_FILE"
#just --completions zsh >> "$AUTO_FILE"
starship init zsh --print-full-init >> "$AUTO_FILE"
zoxide init zsh >> "$AUTO_FILE"