m1新版本Mac最新系統 git自動補全 vim加行號
阿新 • • 發佈:2020-12-31
git自動補全
下載程式碼
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
新增到 .bash_profile
vim ~/.bash_profile
新增內容
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
儲存後重新整理
source ~/.bash_profile
vim加行號
cp /usr/share/vim/vimrc ~/.vimrc vim .vimrc
新增以下內容
syntax on
set nu!
儲存退出