mirror of
https://github.com/KevinMidboe/chsh.git
synced 2025-10-29 04:30:11 +00:00
16 lines
312 B
Fish
16 lines
312 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
source $HOME/.profile
|
|
|
|
# Common programs
|
|
abbr -a -- vi nvim
|
|
|
|
# File exploring
|
|
abbr -a -- l 'tree -L 1 -a'
|
|
abbr -a -- ll 'tree -L 2 -a'
|
|
|
|
# Git (loaded from completions/git.fish)
|
|
source $HOME/.config/fish/completions/git.fish
|