diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2025-04-20 15:46:33 -0400 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2025-05-28 16:36:25 -0400 |
| commit | 895de7bb2bf3381a6f796df93e0c25e8d4b0ff8b (patch) | |
| tree | 805e2237bb8c75c8497d13f9d4622682b08afcec /.config/fish/config.fish | |
| parent | 143847c01930c4e7e0283c019002a95193175557 (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 |
