1
1
Fork 0
dotfiles/fish/README.md
2021-04-12 14:06:28 -05:00

32 lines
439 B
Markdown

# Gaiety's Dotfiles
## fish
A terminal shell
## Setup
```bash
sudo pacman -S fish
chsh -s `which fish`
echo "source {location_of_dotfiles}/fish/config.fish" >> ~/.config/fish/config.fish
```
Log out, then back in
```bash
fish_config
```
1. Choose the `dracula` color scheme
2. Choose the `Terlar` prompt
Add the following to the `~/.config/fish/config.fish`
```
if status is-interactive
and not set -q TMUX
exec tmux
end
```