inputrc 619 B

12345678910111213141516171819202122232425262728293031
  1. # Prettyfi
  2. set colored-stats On
  3. set colored-completion-prefix On
  4. # Completion settings
  5. set show-all-if-ambiguous On
  6. set completion-ignore-case On
  7. set completion-display-width 0
  8. set completion-query-items 1000
  9. # ^C no longer shows on C-c keypress
  10. set echo-control-characters off
  11. # Command history search
  12. "\e[A": history-search-backward
  13. "\e[B": history-search-forward
  14. # Move foreward/backward by word
  15. "\e[1;5D": backward-word
  16. "\e[1;5C": forward-word
  17. # Bash Keybindings
  18. "\C-f":"cd $HOME/.config/"
  19. "\C-b":"cd ..\n"
  20. "\C-h":"cd ~\n"
  21. "\C-w":"webserver\n"
  22. "\es": "\C-asudo \C-e"
  23. "\C-x":"sourceb\n clear\n"
  24. "\C-l":"clear"