---
tags: Linux
title: Fish Shell Setting
---
# Fish Shell Setting
## Fish Shell Add PATH
### Yarn Global Path
```bash
$ set -Ua fish_user_paths ~/.yarn/bin/
```
### Pip Global Path
```bash
$ set -Ua fish_user_paths ~/.local/bin
```
## Full Path Name
```bash
$ set -U fish_prompt_pwd_dir_length 0
```
## Disable greeting
```bash
$ set -U fish_greeting
```