Compare commits

...

2 Commits

Author SHA1 Message Date
5bcba412bf (chore) update readme 2026-04-07 15:14:21 +02:00
b0e7701a27 zsh: few parity fixes 2026-04-07 15:14:12 +02:00
3 changed files with 14 additions and 12 deletions

View File

@@ -28,12 +28,9 @@ Use ./stow.sh --unstow <folder_name> to remove configuration
- allow microphone in steam: `sudo snap connect steam:audio-record :audio-record` - allow microphone in steam: `sudo snap connect steam:audio-record :audio-record`
- gamemode configuration: - gamemode configuration:
- renice=10 - renice=10
- diff for .ohmyzsh via patch files
- ssh-agent: - ssh-agent:
- ohmyzsh patch for agent location - agent-location: `cd $HOME/.oh-my-zsh/ && git apply $HOME/.dots/ssh-agent-location.patch`
- `mv $HOME/.dots/remove-ssh.service ~/.config/systemd/user/remove-ssh.service` - remove keys on lock: `ln -sSf $HOME/.dots/remove-ssh.service $HOME/.config/systemd/user/remove-ssh.service && systemctl --user start remove-ssh && systemctl --user enable remove-ssh`
- `systemctl --user start remove-ssh`
- `systemctl --user enable remove-ssh`
## Software ## Software
@@ -44,8 +41,16 @@ sudo apt install \
git ripgrep fd-find fzf stow git ripgrep fd-find fzf stow
``` ```
```
git clone https://github.com/ohmyzsh/ohmyzsh/ $HOME/.oh-my-zsh
```
### Extended ### Extended
```
cargo install --locked zellij
```
``` ```
sudo apt install \ sudo apt install \
pympress \ pympress \
@@ -72,10 +77,6 @@ sudo snap install \
steam steam
``` ```
```
cargo install --locked zellij
```
### Manual ### Manual
- [Helix](https://github.com/helix-editor/helix/releases) - [Helix](https://github.com/helix-editor/helix/releases)
@@ -88,7 +89,6 @@ cargo install --locked zellij
$ mkdir -p ~/.config/nix/ $ mkdir -p ~/.config/nix/
$ echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf $ echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf
``` ```
- [ohmyzsh](https://ohmyz.sh/)
## Extensions ## Extensions

View File

@@ -25,7 +25,7 @@ alias nupdate="nix-channel --update"
alias typix="nix flake init --refresh -t github:loqusion/typix" alias typix="nix flake init --refresh -t github:loqusion/typix"
alias twatch="typst watch" alias twatch="typst watch"
alias tbuild="tpst build" 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" alias nlatex="nix-shell -p texlive.combined.scheme-full"

View File

@@ -1,6 +1,6 @@
export ZSH="$HOME/.oh-my-zsh" 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. # Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS="true" # DISABLE_MAGIC_FUNCTIONS="true"
@@ -23,6 +23,8 @@ zstyle :omz:plugins:ssh-agent helper sshaskpass
bindkey ^F forward-word bindkey ^F forward-word
bindkey ^B backward-word bindkey ^B backward-word
setopt globdots
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
[ -f ~/.shellrc.alias ] && source ~/.shellrc.alias [ -f ~/.shellrc.alias ] && source ~/.shellrc.alias