Skip to content

Commit

Permalink
Add inputrc and ignore case when tab completing
Browse files Browse the repository at this point in the history
  • Loading branch information
chadoh committed Sep 21, 2015
1 parent eb13b8f commit 6d6cb1e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions inputrc
@@ -0,0 +1,6 @@
set page-completions on
set completion-ignore-case on
set completion-query-items 200
set show-all-if-ambiguous on
set show-all-if-unmodified on
set visible-stats on
3 changes: 2 additions & 1 deletion setup.sh
Expand Up @@ -67,6 +67,7 @@ echo "$NICK" > $USER_DIR/$USER/.machine_nickname
ln -fns $SRC/bash/bashrc $USER_DIR/$USER/.bashrc
ln -fns $SRC/bash/bash_profile $USER_DIR/$USER/.bash_profile
ln -fns $SRC/bash/functions $USER_DIR/$USER/.functions
ln -fns $SRC/inputrc $USER_DIR/$USER/.inputrc

cp -f $SRC/git/gitconfig $USER_DIR/$USER/.gitconfig
ln -fns $SRC/git/gitignore $USER_DIR/$USER/.gitignore
Expand All @@ -92,7 +93,7 @@ ln -fns $SRC/bin/kt $USER_DIR/$USER/bin/kt

if [ -z $QUIET ]; then
echo "Success! Check it out:"
ls -ld $USER_DIR/$USER/.machine_nickname $USER_DIR/$USER/.bashrc $USER_DIR/$USER/.bash_profile $USER_DIR/$USER/.functions $USER_DIR/$USER/.gitconfig $USER_DIR/$USER/.gitignore $USER_DIR/$USER/.vim-tmp $USER_DIR/$USER/.vimrc $USER_DIR/$USER/.ackrc $USER_DIR/$USER/.agignore $USER_DIR/$USER/.tmux.conf $USER_DIR/$USER/.gemrc $USER_DIR/$USER/bin/ts $USER_DIR/$USER/bin/t $USER_DIR/$USER/bin/kt
ls -ld $USER_DIR/$USER/.machine_nickname $USER_DIR/$USER/.bashrc $USER_DIR/$USER/.bash_profile $USER_DIR/$USER/.functions $USER_DIR/$USER/.inputrc $USER_DIR/$USER/.gitconfig $USER_DIR/$USER/.gitignore $USER_DIR/$USER/.vim-tmp $USER_DIR/$USER/.vimrc $USER_DIR/$USER/.ackrc $USER_DIR/$USER/.agignore $USER_DIR/$USER/.tmux.conf $USER_DIR/$USER/.gemrc $USER_DIR/$USER/bin/ts $USER_DIR/$USER/bin/t $USER_DIR/$USER/bin/kt
echo "
Notice that .gitconfig is not symlinked, since your git username is set in .extra (see readme)"
fi

0 comments on commit 6d6cb1e

Please sign in to comment.