From e40a53daa59f64ca368d787625b4d0e38ba318f2 Mon Sep 17 00:00:00 2001 From: hellerve Date: Wed, 29 Apr 2015 18:08:26 +0200 Subject: [PATCH] Added inputrc --- Makefile | 5 ++++- inputrc | 3 +++ zshrc | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 inputrc diff --git a/Makefile b/Makefile index a856ac4..cd862f3 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all:bash ghc git python tmux valgrind vim zsh +all:bash ghc git input python tmux valgrind vim zsh bash: cp bash_profile ~/.bash_profile @@ -11,6 +11,9 @@ git: cp gitignore ~/.gitignore cp gitconfig ~/.gitconfig +input: + cp inputrc ~/.inputrc + python: cp pythonrc ~/.pythonrc diff --git a/inputrc b/inputrc new file mode 100644 index 0000000..f0685c5 --- /dev/null +++ b/inputrc @@ -0,0 +1,3 @@ +set meta-flag on +set convert-meta off +set output-meta on diff --git a/zshrc b/zshrc index 417a315..b4b6170 100644 --- a/zshrc +++ b/zshrc @@ -209,6 +209,7 @@ save_dotfiles(){ cp ~/.gitconfig ${DOTPATH}gitconfig cp ~/.pip-upgrade ${DOTPATH}pip-upgrade cp ~/.pythonrc ${DOTPATH}pythonrc + cp ~/.inputrc ${DOTPATH}inputrc cp ~/.tmux.conf ${DOTPATH}tmux.conf cp ~/.valgrindrc ${DOTPATH}valgrindrc cp -r ~/.vim ${DOTPATH}vim