commit c4f140bded39c096d48f3ea19dd9034cf33894b9 parent 961f364728342997f9f1f5f545e3735818e05a9e Author: Szymon Mikulicz <szymon.mikulicz@posteo.net> Date: Tue, 9 Jun 2026 11:24:30 +0200 Move zshrc to zshrc.local and remove :e Diffstat:
| D | scripts/.local/bin/:e | | | 2 | -- |
| M | zsh/.zshrc | | | 2 | +- |
| A | zsh/.zshrc.local | | | 4 | ++++ |
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/scripts/.local/bin/:e b/scripts/.local/bin/:e @@ -1,2 +0,0 @@ -#!/bin/sh -exec $EDITOR "$@" diff --git a/zsh/.zshrc b/zsh/.zshrc @@ -130,4 +130,4 @@ unset key # Created by newuser for 5.9 -[ -f ~/.cargo/env ] && source ~/.cargo/env +source ~/.zshrc.local diff --git a/zsh/.zshrc.local b/zsh/.zshrc.local @@ -0,0 +1,4 @@ +[ -f ~/.cargo/env ] && source ~/.cargo/env + +alias :e="$EDITOR" +alias :q=exit