1

Add inputrc

This commit is contained in:
Evan Pratten 2024-05-20 09:34:26 -04:00
parent e3aa3d3a5f
commit a1590d4726
3 changed files with 21 additions and 0 deletions

19
configs/.inputrc Normal file
View File

@ -0,0 +1,19 @@
# Ctrl + Arrow
"\e[1;5C": forward-word
"\e[1;5D": backward-word
# Ctrl + Delete
"\e[3;5~": kill-word
# Ctrl + Backspace
"\C-H": backward-kill-word
# Ctrl + Shift + Delete
"\e[3;6~": kill-line
# Home & End
"\e[1~": beginning-of-line # If the home key sends \e[1~ (common)
"\e[4~": end-of-line # If the end key sends \e[4~ (common)
# Delete
"\e[3~": delete-char

View File

@ -45,6 +45,7 @@ mkdir -p ~/.local/share/nautilus/scripts/
# Configure the shell
ln -sf $EWCONFIG_ROOT/configs/.zshrc ~/.zshrc
ln -sf $EWCONFIG_ROOT/configs/.zshrc ~/.bashrc
ln -sf $EWCONFIG_ROOT/configs/.inputrc ~/.inputrc
# Configure Git
ln -sf $EWCONFIG_ROOT/configs/.gitconfig ~/.gitconfig

View File

@ -26,6 +26,7 @@ mkdir -p ~/.ssh
# Configure the shell
ln -sf $EWCONFIG_ROOT/configs/.zshrc ~/.zshrc
ln -sf $EWCONFIG_ROOT/configs/.zshrc ~/.bashrc
ln -sf $EWCONFIG_ROOT/configs/.inputrc ~/.inputrc
mkdir -p $LOCALAPPDATA/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState
ln -sf $EWCONFIG_ROOT/configs/windows-terminal/settings.json $LOCALAPPDATA/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/settings.json