略過git
WSL是Linux子系統專用模式。github
啓動設置項vim
代碼set "PATH=%ConEmuBaseDirShort%\wsl;%PATH%" & %ConEmuBaseDirShort%\conemu-cyg-64.exe --wsl --distro-guid={xxxxxxxxxxxxxxxxxxxxxx} -cur_console:pm:/mnt
windows
其中子系統惟一標識符,每一個人的都不同。bash
在註冊表(regedit
)中查找xss
計算機\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Lxss
字體
小提示:
由於系統版本不一樣,註冊表路徑可能不徹底相同。
但後面路徑 xxxSoftwareMicrosoftWindowsCurrentVersionLxss 應該是相同的。ui
啓動效果圖spa
安裝任何包以前必定要先更新!sudo apt-get update
.net
sudo apt-get install zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
若是 遇到證書相似問題apt-get install ca-certificates
vim ~/.bashrc
if test -t 1; then exec zsh fi
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" } ]
代碼
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
是在終端中執行,不是添加到文件中。(避免讀者困惑)
代碼
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
代碼
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
代碼
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日 寫