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