安装并切换到 fish shell
安装并切换到 fish shell
安装
$ brew install fish
检查安装
$ fish -v
fish, version 3.1.0
设置 fish shell 为默认 shell
首先添加 fish 到 /etc/shells
:
$ sudo echo /usr/local/bin/fish >> /etc/shells
如果报如下错误:
-bash: /etc/shells: Permission denied
尝试以下命令:
$ echo "/usr/local/bin/fish" | sudo tee -a /etc/shells
检查添加结果:
$ cat /etc/shells
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/dash
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
/usr/local/bin/fish
切换默认 shell 到 fish:
$ chsh -s /usr/local/bin/fish
安装 omf
$ curl -L https://get.oh-my.fish | fish
检查安装:
$ omf -v
Oh My Fish version 7
然后就可以通过 omf 安装相应的主题,插件了。
推荐的插件和主题
- autojump
- 先正常安装 autojump
brew install autojump
- 安装 fish autojump 插件
omf install autojump
- 配置 fish,添加
[ -f /usr/local/share/autojump/autojump.fish ]; and source /usr/local/share/autojump/autojump.fis
到~/.config/fish/config.fish
- 先正常安装 autojump
- nvm
- 正常安装 nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
- 安装 nvm 插件
omf install nvm
- 添加
set -gx NVM_DIR (brew --prefix nvm)
到 fish 配置文件
- 正常安装 nvm
fish 的配置
通过 ~/.config/fish/config.fish
文件进行配置,如果没有的话,手动创建一个。
也可通过 fish_config
命令打开一个本地页面进行可视化的配置。
$ fish_config
可视化配置 fish
命令行的 vi 模式
通过 fish_vi_key_bindings
可开启 vi 模式,此模式下可通过 fish_default_key_bindings
恢复到正常模式。
将 fish_vi_key_bindings
添加到 fish 的配置文件中可默认开启 vi 模式。
另,该模式下会影响 fish 自动实例快捷键
function fish_user_key_bindings
for mode in insert default visual
bind -M $mode \cf forward-char
end
end
fish_user_key_bindings
以上。