Compare commits
No commits in common. "1db439f869a2efb03b34f2c6fc3fd54d5c166ed4" and "20bdd87a754f75fa2c3cb6c0bef2a18163f70864" have entirely different histories.
1db439f869
...
20bdd87a75
8
.zshrc
8
.zshrc
|
@ -1,5 +1,6 @@
|
||||||
source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then
|
||||||
source /nix/var/nix/profiles/default/etc/profile.d/nix.sh
|
. "$HOME/.nix-profile/etc/profile.d/nix.sh"
|
||||||
|
fi
|
||||||
|
|
||||||
export BAT_THEME="Solarized (light)"
|
export BAT_THEME="Solarized (light)"
|
||||||
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
|
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.local" ] && source "$HOME/.zshrc.local"
|
||||||
[ -f "$HOME/.zshrc.auto" ] && source "$HOME/.zshrc.auto"
|
[ -f "$HOME/.zshrc.auto" ] && source "$HOME/.zshrc.auto"
|
||||||
|
|
||||||
FPATH="$HOME/.nix-profile/share/zsh/site-functions:${FPATH}"
|
|
||||||
autoload -Uz compinit && compinit
|
|
||||||
|
|
|
@ -138,14 +138,6 @@ config.color_scheme = 'One Light (base16)'
|
||||||
config.window_background_opacity = 0.9
|
config.window_background_opacity = 0.9
|
||||||
config.initial_rows = 30
|
config.initial_rows = 30
|
||||||
config.initial_cols = 120
|
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
|
return config
|
||||||
EOF
|
EOF
|
||||||
|
@ -244,6 +236,7 @@ AUTO_FILE="$HOME/.zshrc.auto"
|
||||||
echo > "$AUTO_FILE"
|
echo > "$AUTO_FILE"
|
||||||
atuin init zsh >> "$AUTO_FILE"
|
atuin init zsh >> "$AUTO_FILE"
|
||||||
direnv hook zsh >> "$AUTO_FILE"
|
direnv hook zsh >> "$AUTO_FILE"
|
||||||
|
#just --completions zsh >> "$AUTO_FILE"
|
||||||
starship init zsh --print-full-init >> "$AUTO_FILE"
|
starship init zsh --print-full-init >> "$AUTO_FILE"
|
||||||
zoxide init zsh >> "$AUTO_FILE"
|
zoxide init zsh >> "$AUTO_FILE"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue