目录
安装
两种简单的安装方式
通过curl安装
bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"
通过wget安装
bash -c "$(wget https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh -O -)"
安装后会将[email protected]:ohmybash/oh-my-bash.git
克隆到~/.oh-my-bash
目录,并备份旧的.bashrc
为.bashrc-omb-backup-xxxxx
。
升级、卸载及其他
卸载
~/.oh-my-bash/tools/uninstall.sh
升级
bash ~/.oh-my-bash/tools/upgrade.sh
更多工具位于~/.oh-my-bash/tools/
中。
安装Powerline字体以避免符号显示乱码
git clone https://github.com/powerline/fonts.git --depth=1
cd fonts
./install.sh
cd ..
rm -Rf ./fonts
安装完字体后,更改终端字体为Powerline Mono字体,例如在Terminator中可以在首选项 > 配置文件
中设置。
一些配置
编辑家目录下的.bashrc文件。
vi ~/.bashrc
- 将
OSH_THEME="font"
改为OSH_THEME="powerline"
- 添加以下行:
POWERLINE_PROMPT_USER_INFO_MODE=""
THEME_CLOCK_FORMAT="%H:%M:%S"
POWERLINE_PROMPT="scm clock user_info python_venv ruby cwd"
- 编辑补全块如下:
completions=(
git
composer
ssh
docker-compose
docker
pip
pip3
)
支持的补全是位于 ~/.oh-my-bash/completions
中。
- 编辑插件块如下:
plugins=(
git
bashmarks
colored-man-pages
sudo
)
支持的插件位于 ~/.oh-my-bash/plugins
中。
更多信息请访问 oh-my-bash。
标签:git,oh,my,tools,安装,bash From: https://blog.csdn.net/step_chen/article/details/142785747