mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-15 00:41:11 +00:00
10 lines
114 B
Bash
10 lines
114 B
Bash
# Aliases
|
|
alias kate='kate >/dev/null 2>&1' # Silent start.
|
|
|
|
# Functions
|
|
function kt() {
|
|
cd "$1"
|
|
kate "$1"
|
|
}
|
|
|