Remove watchman init from zshrc, I dont even use it anymore, fix sourcing of hm session

This commit is contained in:
Martin Larsson 2025-10-11 15:21:00 +02:00
parent f8e65f7bf7
commit b8f72bf6ad

View file

@ -28,6 +28,7 @@ set_custom_keybindings() {
init() { init() {
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
[ -f ~/.zshrc_local ] && source ~/.zshrc_local [ -f ~/.zshrc_local ] && source ~/.zshrc_local
[ -f ~/.nix-profile/etc/profile.d/hm-session-vars.sh ] && source ~/.nix-profile/etc/profile.d/hm-session-vars.sh
eval "$(fzf --zsh)" eval "$(fzf --zsh)"
eval "$(zoxide init --cmd cd zsh)" eval "$(zoxide init --cmd cd zsh)"
@ -224,6 +225,3 @@ if [[ -n "$TMUX" ]]; then
tmux rename-window "$name" tmux rename-window "$name"
} }
fi fi
# just call watchman to jumpstart the daemon
watchman watch-list >/dev/null 2>&1