在平時使用shell
中經常要輸入很長的命令是不是很頭疼!那咱們就來設定一下快捷指令吧!
首先確保你已經安裝過oh-my-zsh
~
然後執行
vim ~/.zshrc
這時候可以看到檔案底部內容為
# set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the zsh_custom folder.
# for a full list of active aliases, run `alias`.
## example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
那麼就直接在檔案底部 按照他的形式去新增就好了~
# set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the zsh_custom folder.
# for a full list of active aliases, run `alias`.
## example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias go-work=
"cd ~/document/work"
不要忘了讓剛才的命令生效,不然使用tab鍵
無法自動補全
source ~/.zshrc
ok,接下來在你的shell中試試go-work
吧~ oh my zsh主題配置
3.搭建方法 前幾天在少數派的一篇文章中看到了這樣的終端,被驚豔到了,於是自己也摸索,最終,將終端打造成下面的樣子。效果圖如下所示,是不是很酷炫?在命令開始的左端,有系統顯示 當前使用者名稱 當前目錄的絕對路徑 若是進入github等也有其他的變化 在命令的右端有上一條命令執行狀態 若執行成功,有乙...
Arch美化 配置oh my zsh
sudo pacman s zsh 配置預設shell sudo vim etc passwd 將要修改的使用者的shell路徑改為 usr bin zsh即可,也就是將 bash 改為 zsh 保證安裝了git curl 或 wget sudo pacman s git wget curl cur...
oh my zsh自定義配置
預設的zsh主題robbyrussell已經很棒了,簡潔高效,能很好的顯示git的相關資訊,比如branch資訊,修改,刪除,新增等操作.但是多使用者的話就不能很好的展示,我們可以通過修改robbyrussell的配置檔案來達到我們想要的效果.一般情況下,我們安裝oh my zsh都是在自己的家目錄...