diff options
| author | nsfisis <nsfisis@gmail.com> | 2021-05-31 00:57:13 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2021-05-31 00:57:13 +0900 |
| commit | 77db37d3506edd006c0d4edc8b216d869a06f30b (patch) | |
| tree | 6cc6cb455ad32244c89002abc4fb54cb2d70af81 /.config/fish/config.fish | |
| parent | 98be04b9ddb9ce3b0a8c41c74cb57460f1d872eb (diff) | |
| download | dotfiles-77db37d3506edd006c0d4edc8b216d869a06f30b.tar.gz dotfiles-77db37d3506edd006c0d4edc8b216d869a06f30b.tar.zst dotfiles-77db37d3506edd006c0d4edc8b216d869a06f30b.zip | |
fish shell
Diffstat (limited to '.config/fish/config.fish')
| -rw-r--r-- | .config/fish/config.fish | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish new file mode 100644 index 0000000..cdb7b10 --- /dev/null +++ b/.config/fish/config.fish @@ -0,0 +1,34 @@ +set -gx LANG 'ja_JP.UTF-8' + +set -gx VISUAL vim +set -gx EDITOR vim + +set -gx LD_LIBRARY_PATH "$HOME/Downloads/lib:$HOME/lib:$LD_LIBRARY_PATH" + +set -gx PATH "/usr/local/bin:$PATH" + +set -gx PATH "$HOME/.cargo/bin:$PATH" +set -gx PATH "$HOME/bin:$HOME/.local/bin:$PATH" + +set -gx PATH "/usr/local/opt/gettext/bin:$PATH" + +# To override system-provided Ruby with brewed Ruby +set -gx PATH "/usr/local/opt/ruby/bin:$PATH" + +abbr -a rm rm -i +abbr -a cp cp -i +abbr -a mv mv -i + +abbr -a e vim +abbr -a o open +abbr -a g git +abbr -a cat bat +abbr -a find fd +abbr -a grep rg +abbr -a ls exa +abbr -a lsa exa -a +abbr -a lsl exa -l +abbr -a lsal exa -al +abbr -a lsla exa -al + +starship init fish | source |
