From 65b76aa6e5198361f0359528c2f41e408db0f58c Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Sun, 27 Dec 2020 17:00:22 +0000 Subject: [PATCH] Move bell-style to shrc from inputrc --- roles/home-cli/files/inputrc | 1 - roles/home-cli/files/shrc | 1 + roles/home-cli/tasks/dotfiles.yml | 4 ---- 3 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 roles/home-cli/files/inputrc diff --git a/roles/home-cli/files/inputrc b/roles/home-cli/files/inputrc deleted file mode 100644 index ac81a39..0000000 --- a/roles/home-cli/files/inputrc +++ /dev/null @@ -1 +0,0 @@ -set bell-style none diff --git a/roles/home-cli/files/shrc b/roles/home-cli/files/shrc index b880981..6a80365 100644 --- a/roles/home-cli/files/shrc +++ b/roles/home-cli/files/shrc @@ -104,6 +104,7 @@ if [ "$BASH" ]; then bind '"\e[1;5D": backward-word' bind '"\e[A": history-search-backward' bind '"\e[B": history-search-forward' + bind 'set bell-style none' bind 'set completion-ignore-case on' if test $(id -u) -eq 0; then diff --git a/roles/home-cli/tasks/dotfiles.yml b/roles/home-cli/tasks/dotfiles.yml index d12b638..fe45067 100644 --- a/roles/home-cli/tasks/dotfiles.yml +++ b/roles/home-cli/tasks/dotfiles.yml @@ -7,10 +7,6 @@ file: path: "{{ ansible_env.HOME }}/.hushlogin" state: absent -- name: Copy .inputrc - copy: - src: inputrc - dest: "{{ ansible_env.HOME }}/.inputrc" - name: Copy .tmux.conf copy: src: tmux.conf