windows 10 linux子系統oh-my-zsh與Cmder配置-2018

教程主要寫做目的是爲了解決配置過程當中遇到的各類問題,讓其餘人少走彎路。

1. 起步

  • Linux 子系統開啓
  • Cmder安裝

略過git

2.配置Cmder

WSL是Linux子系統專用模式。github

  1. 很好的解決的VIM下上下左右導航鍵無效。
  2. 啓動時不在當前目錄下。

2.1 爲多個子系統配置啓動

啓動設置項vim

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

其中子系統惟一標識符,每一個人的都不同。bash

在註冊表(regedit)中查找xss

計算機\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Lxss字體

小提示:
由於系統版本不一樣,註冊表路徑可能不徹底相同。
但後面路徑 xxxSoftwareMicrosoftWindowsCurrentVersionLxss 應該是相同的。ui

Cmder配置完成

啓動效果圖spa

3. oh-my-zsh配置

安裝任何包以前必定要先更新!
sudo apt-get update.net

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" }
]

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日 寫

相關文章
相關標籤/搜索