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