windows 10 linux子系统oh-my-zsh与Cmder配置-2018

教程主要写作目的是为了解决配置过程中遇到的各种问题,让其他人少走弯路。

1. 起步

  • Linux 子系统开启
  • Cmder安装

略过

2.配置Cmder

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

WSL是Linux子系统专用模式。

  1. 很好的解决的VIM下上下左右导航键无效。
  2. 启动时不在当前目录下。

2.1 为多个子系统配置启动

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

启动设置项

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

代码
set "PATH=%ConEmuBaseDirShort%\wsl;%PATH%" & %ConEmuBaseDirShort%\conemu-cyg-64.exe --wsl --distro-guid={xxxxxxxxxxxxxxxxxxxxxx} -cur_console:pm:/mnt

其中子系统唯一标识符,每个人的都不一样。

在注册表(regedit)中查找

计算机\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Lxss

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

小提示:
因为系统版本不同,注册表路径可能不完全相同。
但后面路径 xxxSoftwareMicrosoftWindowsCurrentVersionLxss 应该是相同的。

Cmder配置完成

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

启动效果图

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

3. oh-my-zsh配置

安装任何包之前一定要先更新!
sudo apt-get update

3.1 安装zsh

sudo apt-get install zsh

3.2 安装oh-my-zsh

sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

如果 遇到证书类似问题
apt-get install ca-certificates

3.3 自动启动zsh

vim ~/.bashrc

if test -t 1; then
    exec zsh
fi

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

3.4 修改主题

vim ~/.zshrc
ZSH_THEME="agnoster"

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

终端字体补全
sudo apt-get install fonts-powerline

客户端字体补
注意: 有些字符在windows 上无法显示,所以需要安装字体
nerdfonts.com
选择 Hack

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

还要设置Cmder字体
windows 10 linux子系统oh-my-zsh与Cmder配置-2018

更新配置 或者重启终端
source ~/.zshrc

整体效果
windows 10 linux子系统oh-my-zsh与Cmder配置-2018



如果你是Sublime玩家,可以配合Terminal插件快速调出终端。
windows 10 linux子系统oh-my-zsh与Cmder配置-2018

Terminal配置Cmder路径
Packages Settings >> Terminal >> Setting - User

{
  "terminal": "D:\\Cmder\\Cmder.exe",
  "parameters": ["/START", "%CWD%"]
}

设置自定义快捷键
Packages Settings >> Terminal >> Key Bindings - Default

[
    { "keys": ["ctrl+t"], "command": "open_terminal" },
    { "keys": ["ctrl+shift+alt+t"], "command": "open_terminal_project_folder" }
]

4. zsh插件安装

4.1 安装命令提示

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

代码

cd ~/.oh-my-zsh/plugins/
mkdir incr && cd incr
wget http://mimosa-pudica.net/src/incr-0.2.zsh
vim ~/.zshrc 在文件末尾添加一句启动命令
source ~/.oh-my-zsh/plugins/incr/incr*.zsh 
刷新配置
source ~/.zshrc

切记是在末尾添加,不然不能生效。
windows 10 linux子系统oh-my-zsh与Cmder配置-2018

刷新配置source ~/.zshrc是在终端中执行,不是添加到文件中。(避免读者困惑)
windows 10 linux子系统oh-my-zsh与Cmder配置-2018

4.2 安装快捷导航

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

代码

sudo apt-get install autojump
vim ~/.zshrc
plugins=(
  autojump
)
刷新配置
source ~/.zshrc

需要重启终端

autojump 导航错误
windows 10 linux子系统oh-my-zsh与Cmder配置-2018
当使用传统cd出现如下错误时
autojump_chpwd:4: nice(5) failed: operation not permitted

代码

vim ~/.zshrc
添加下面一句
unsetopt BG_NICE
刷新配置
source ~/.zshrc

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

4.3 语法检测

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

代码

cd ~/.oh-my-zsh/plugins/
wget https://github.com/zsh-users/zsh-syntax-highlighting/archive/0.6.0.tar.gz
tar xf 0.6.0.tar.gz
mv zsh-syntax-highlighting-0.6.0 zsh-syntax-highlighting
vim ~/.zshrc
plugins=(
  zsh-syntax-highlighting
)
刷新配置
source ~/.zshrc

解决权限问题
一般启动时会出现zsh-syntax-highlighting权限问题
compaudit | xargs chmod g-w,o-w

4.4 自动完成

windows 10 linux子系统oh-my-zsh与Cmder配置-2018

代码

cd ~/.oh-my-zsh/plugins/
mkdir zsh-autosuggestions
wget https://github.com/zsh-users/zsh-autosuggestions/archive/v0.4.3.tar.gz
tar xf v0.4.3.tar.gz
mv zsh-autosuggestions-0.4.3  zsh-autosuggestions
vim ~/.zshrc
plugins=(
  zsh-autosuggestions
)
刷新配置
source ~/.zshrc

建议重启终端

提示:
安装插件流程就是把git压缩包解压到~/.oh-my-zsh/plugins/目录下。
目录名字改成与plugins=(pluginName) 一致就可以。
注意目录下面不能再有目录,在二级目录下插件不生效。
如果要求插件包最新状态,可以到git源仓库下复制下载链接,更换 wget xxxxx.tar.gz

示例
windows 10 linux子系统oh-my-zsh与Cmder配置-2018



2018年10月28日 写

相关推荐