mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
* feat: vim config * fix: nvim was getting vimrc config * chore: cleanup, cr fix * feat(config): add config/fish/alias.fish
17 lines
797 B
Fish
17 lines
797 B
Fish
# ╭──────────────────────────────────────────────────────────╮
|
|
# │ fish/config.fish │
|
|
# ╰──────────────────────────────────────────────────────────╯
|
|
|
|
test -e "$HOME/.config/fish/alias.fish" &&
|
|
source "$HOME/.config/fish/alias.fish"
|
|
|
|
test -e "$HOME/.config/fish/exports.fish" &&
|
|
source "$HOME/.config/fish/exports.fish"
|
|
|
|
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
|
|
# Start tmux if not already running and not in SSH
|
|
open-tmux # defined in functions/open-tmux.fish
|
|
end
|