diff options
| author | Maciej Sobkowski <maciej@sobkow.ski> | 2025-04-06 22:04:19 +0200 |
|---|---|---|
| committer | Maciej Sobkowski <maciej@sobkow.ski> | 2025-04-06 22:04:19 +0200 |
| commit | b1a0e8e5121c37727259856d4f08e138952287f5 (patch) | |
| tree | d1b5bb63a176b6470d6093102c816783efc4e870 /.config/fish/config.fish | |
| parent | ff6f9337d8e1955931d517311abcb5f705e01a04 (diff) | |
fish: add abbreviations for frequently used commands
Diffstat (limited to '.config/fish/config.fish')
| -rw-r--r-- | .config/fish/config.fish | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish index cea867d..c2ab53b 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -2,5 +2,22 @@ if status is-interactive # Commands to run in interactive sessions can go here starship init fish | source + abbr g git + abbr c clear + abbr p pwd + abbr q exit + abbr b bat + abbr v nvim + abbr vim nvim + + abbr l "exa --icons" + abbr ll "exa -l --icons" + abbr T "exa --icons --tree" + + abbr t tmux + abbr tn "tmux new -s" + abbr ta "tmux attach -t" + abbr tl "tmux ls" + fish_config theme choose tokyonight_storm end |
