5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Ubuntuにfishをインストールする方法

Last updated at Posted at 2022-08-26

はじめに

備忘録
タイトルの通りです。
実行環境はUbuntu20.04(bash : $の方)です。
途中からfish( : ~>)に変わっています。
どなたかのお役に立てれば幸いです。

fishのインストール

次のコマンドでfishをインストールできます。

$ sudo apt install fish

インストールが終わったらfishのバージョンを確認してみましょう。

$ fish -v 

シェルをfishに変更

まずfishのパスを確認します。

$ cat /etc/shells

上のコマンドを実行すると、シェルのパス一覧が表示されます。

# /etc/shells: valid login shells
/bin/sh
/bin/bash
/usr/bin/bash
/bin/rbash
/usr/bin/rbash
/bin/dash
/usr/bin/dash
/usr/bin/tmux
/usr/bin/screen
/usr/bin/fish

chshコマンドでfishのパスを設定します。

$ chsh -s /usr/bin/fish

次にターミナルを開いた時にfishが起動します。
SSHをしている場合は、一度exitして接続を閉じてから、再びSSH接続してください。
user@host ~>になっていれば大丈夫です。

fisherのインストール

次のコマンドでfisherをインストールできます。

~> curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher

文字化けする場合は、
~> sudo apt-get install fonts-powerline
でフォントをインストールしましょう。

fisherのバージョンを確認してみましょう。

~> fisher -v

プラグインのインストール

便利なプラグインがいろいろ用意されています。
興味がある人は調べてみてください。

# テーマのプラグイン
~> fisher install oh-my-fish/theme-bobthefish
# 訪れたことがあるディレクトリにすぐ移動できるプラグイン
~> fisher install jethrokuan/z

fish_configコマンドで、ブラウザからテーマをいじる等もできます。

ブログもあります

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?