mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
18 lines
No EOL
330 B
Bash
18 lines
No EOL
330 B
Bash
# Append to original bashrc for minimal setup
|
|
# echo $DOTFILES/wsl/.bashrc >> ~/.bashrc
|
|
set -o vi
|
|
|
|
bind '"\en": "\C-j"'
|
|
bind '"\ee": "\C-k"'
|
|
bind '"\ei": "\C-l"'
|
|
|
|
bind '"\el": "\ei"'
|
|
bind '"\eL": "\eI"'
|
|
|
|
bind '"\ek": "\en"'
|
|
bind '"\eK": "\eN"'
|
|
|
|
bind '"\ej": "\ee"'
|
|
bind '"\eJ": "\eE"'
|
|
|
|
bind '"\eY": "\ey$"' |