12 lines
240 B
Bash
Executable File
12 lines
240 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
#BINDS
|
|
|
|
bindkey '^[[24~' clear-screen
|
|
bindkey "^[OH" beginning-of-line
|
|
bindkey "^[OF" end-of-line
|
|
bindkey '^[[1;5D' backward-word
|
|
bindkey '^[[1;5C' forward-word
|
|
|
|
bindkey '^R' history-incremental-search-backward
|