mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
local changes
This commit is contained in:
parent
e7a8741e33
commit
1368ad5d93
1 changed files with 7 additions and 1 deletions
8
zshrc
8
zshrc
|
|
@ -29,7 +29,8 @@ DISABLE_COMPLETION_WAITING_DOTS="false" # bool
|
|||
|
||||
# plugins to load (array)
|
||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||
plugins=(git command-not-found)
|
||||
# plugins=(git command-not-found)
|
||||
plugins=(git)
|
||||
|
||||
|
||||
# Customize to your needs...
|
||||
|
|
@ -223,3 +224,8 @@ alias s="sudo -s -E"
|
|||
# don't require "rehash" after installing a package
|
||||
setopt nohashdirs
|
||||
|
||||
function compile () {
|
||||
echo "[compile zsh function] $@"
|
||||
for file in "$@"; do gcc -o "${file%.}" "$file"; done
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue