From 5a6c231cb67f53b0076b9991ef40092446bfcc81 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Tue, 7 Apr 2026 10:10:22 +0200 Subject: [PATCH] zsh: few parity fixes --- files/shell/.shellrc.alias | 2 +- files/shell/.zshrc | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/files/shell/.shellrc.alias b/files/shell/.shellrc.alias index 0f2c8b2..a4646b6 100644 --- a/files/shell/.shellrc.alias +++ b/files/shell/.shellrc.alias @@ -25,7 +25,7 @@ alias nupdate="nix-channel --update" alias typix="nix flake init --refresh -t github:loqusion/typix" alias twatch="typst watch" alias tbuild="tpst build" -alias tlsp="nix-shell -p tinymist" +alias tlsp="nix-shell -p tinymist --command zsh" alias nlatex="nix-shell -p texlive.combined.scheme-full" diff --git a/files/shell/.zshrc b/files/shell/.zshrc index 7aaf476..f004635 100644 --- a/files/shell/.zshrc +++ b/files/shell/.zshrc @@ -1,6 +1,6 @@ export ZSH="$HOME/.oh-my-zsh" -ZSH_THEME="robbyrussell" +ZSH_THEME="afowler" # Uncomment the following line if pasting URLs and other text is messed up. # DISABLE_MAGIC_FUNCTIONS="true" @@ -19,10 +19,13 @@ COMPLETION_WAITING_DOTS="true" plugins=(git colored-man-pages rust ssh-agent) zstyle :omz:plugins:ssh-agent helper sshaskpass +zstyle :omz:plugins:ssh-agent agent-forwarding yes bindkey ^F forward-word bindkey ^B backward-word +setopt globdots + source $ZSH/oh-my-zsh.sh [ -f ~/.shellrc.alias ] && source ~/.shellrc.alias