Added inputrc

This commit is contained in:
hellerve
2015-04-29 18:08:26 +02:00
parent 060cfd198e
commit e40a53daa5
3 changed files with 8 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
all:bash ghc git python tmux valgrind vim zsh all:bash ghc git input python tmux valgrind vim zsh
bash: bash:
cp bash_profile ~/.bash_profile cp bash_profile ~/.bash_profile
@@ -11,6 +11,9 @@ git:
cp gitignore ~/.gitignore cp gitignore ~/.gitignore
cp gitconfig ~/.gitconfig cp gitconfig ~/.gitconfig
input:
cp inputrc ~/.inputrc
python: python:
cp pythonrc ~/.pythonrc cp pythonrc ~/.pythonrc

3
inputrc Normal file
View File

@@ -0,0 +1,3 @@
set meta-flag on
set convert-meta off
set output-meta on

1
zshrc
View File

@@ -209,6 +209,7 @@ save_dotfiles(){
cp ~/.gitconfig ${DOTPATH}gitconfig cp ~/.gitconfig ${DOTPATH}gitconfig
cp ~/.pip-upgrade ${DOTPATH}pip-upgrade cp ~/.pip-upgrade ${DOTPATH}pip-upgrade
cp ~/.pythonrc ${DOTPATH}pythonrc cp ~/.pythonrc ${DOTPATH}pythonrc
cp ~/.inputrc ${DOTPATH}inputrc
cp ~/.tmux.conf ${DOTPATH}tmux.conf cp ~/.tmux.conf ${DOTPATH}tmux.conf
cp ~/.valgrindrc ${DOTPATH}valgrindrc cp ~/.valgrindrc ${DOTPATH}valgrindrc
cp -r ~/.vim ${DOTPATH}vim cp -r ~/.vim ${DOTPATH}vim