教程主要写作目的是为了解决配置过程中遇到的各种问题,让其他人少走弯路。
1. 起步
- Linux 子系统开启
- Cmder安装
略过
2.配置Cmder
WSL是Linux子系统专用模式。
- 很好的解决的VIM下上下左右导航键无效。
- 启动时不在当前目录下。
2.1 为多个子系统配置启动
启动设置项
代码
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
小提示:
因为系统版本不同,注册表路径可能不完全相同。
但后面路径 xxx\Software\Microsoft\Windows\CurrentVersion\Lxss 应该是相同的。
Cmder配置完成
启动效果图
提示
Shift+Alt+number 快捷启动不同终端
number 代表数字1、2、3、·····
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
3.4 修改主题
vim ~/.zshrc
ZSH_THEME="agnoster"
终端字体补全
sudo apt-get install fonts-powerline
客户端字体补
注意: 有些字符在windows 上无法显示,所以需要安装字体
nerdfonts.com
选择 Hack
还要设置Cmder字体
更新配置 或者重启终端
source ~/.zshrc
整体效果
如果你是Sublime玩家,可以配合Terminal
插件快速调出终端。
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" }
]
你也可以把Sublime嵌入终端中
在Cmder根目录 >> config >> user_aliases.cmd
添加下面一句
sub="D:\SublimeText3\sublime_text.exe" $* -new_console:s75V
更多配置,请看:Seamless Sublime Text 3 Integration
提示:
- s50H,左右布局50%
- s75V,垂直布局75%
4. zsh插件安装
4.1 安装命令提示
代码
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
切记是在末尾添加,不然不能生效。
刷新配置source ~/.zshrc
是在终端中执行,不是添加到文件中。(避免读者困惑)
4.2 安装快捷导航
代码
sudo apt-get install autojump
vim ~/.zshrc
plugins=(
autojump
)
刷新配置
source ~/.zshrc
需要重启终端
autojump 导航错误
当使用传统cd出现如下错误时
autojump_chpwd:4: nice(5) failed: operation not permitted
代码
vim ~/.zshrc
添加下面一句
unsetopt BG_NICE
刷新配置
source ~/.zshrc
4.3 语法检测
代码
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 自动完成
代码
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
示例
2018年10月28日 写
2018年11月18日 更新