38 lines
798 B
Markdown
38 lines
798 B
Markdown
# Shaun's `fish` Dotfiles
|
|
|
|
## Location
|
|
|
|
### Config Directory
|
|
|
|
The configuration files need to be present at this location, `~/.config/fish`. So, we can use the following command to softlink/symlink,
|
|
|
|
```bash
|
|
ln -s <location of cloned dotfiles fish directory> ~/.config
|
|
# e.g.
|
|
# ln -s ~/dotfiles/fish ~/.config
|
|
```
|
|
|
|
## Install Powerline Font or Nerd Font
|
|
|
|
A nerd font is expected for the awesome unicode characters, and the easiest is probably powerline.
|
|
|
|
```bash
|
|
dnf install powerline
|
|
```
|
|
|
|
## Install Oh My Fish (`omf`)
|
|
|
|
This addon is expected within our configuration so we should install it.
|
|
|
|
```bash
|
|
curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish
|
|
```
|
|
|
|
## Install Bob The Fish Theme (`bobthefish`)
|
|
|
|
This theme is great.
|
|
|
|
```bash
|
|
omf install bobthefish
|
|
```
|