mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
8 lines
112 B
Bash
8 lines
112 B
Bash
# Aliases
|
|
alias kate='kate >/dev/null 2>&1' # Silent start.
|
|
|
|
# Functions
|
|
function kt() {
|
|
cd "$1" && kate .
|
|
}
|
|
|