diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2025-04-20 15:46:33 -0400 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2025-04-20 15:48:01 -0400 |
| commit | 973673083f215451b7674a22533b4e7dfdfb81fd (patch) | |
| tree | be7942cc9e98755edeb24427e4776b75e7485f73 /.config/fish/config.fish | |
| parent | 78efc3eb493b40ad2f79408a47bb873b5eea9db0 (diff) | |
maybe useful
idk
Diffstat (limited to '.config/fish/config.fish')
| -rw-r--r-- | .config/fish/config.fish | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish new file mode 100644 index 0000000..8f69dcb --- /dev/null +++ b/.config/fish/config.fish @@ -0,0 +1,24 @@ +if status is-interactive + # Commands to run in interactive sessions can go here +end + +# Add to PATH +fish_add_path ~/bin +fish_add_path ~/go/bin +fish_add_path ~/.local/bin + +if [ -f "$HOME/.zig/env" ]; + fish_add_path /home/algo/.zig/bin + fish_add_path /home/algo/.zig/zig +end +fish_add_path --prepend $HOME/.cargo/bin + +# Set editor +set -gx EDITOR nvim + +# Man page settings +set -gx MANPAGER 'nvim +Man!' +set -gx MANWIDTH 80 + + +starship init fish | source |
