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