diff --git a/bashrc b/bashrc index 0de3cba..ba88ae3 100644 --- a/bashrc +++ b/bashrc @@ -46,8 +46,6 @@ alias dmesg='dmesg --ctime' # Frequent mistakes alias systemclt=systemctl -alias docker='sudo docker' -alias docker-compose='sudo docker-compose' # Shortcuts for commonly used commands alias ll="ls -l $LS_OPTIONS" diff --git a/inputrc b/inputrc index c95c889..9f4f421 100644 --- a/inputrc +++ b/inputrc @@ -1,16 +1,34 @@ $include /etc/inputrc +set bell-style none +set completion-ignore-case on +set completion-prefix-display-length 4 +set completion-query-items 200 set editing-mode vi +set history-preserve-point on +set history-size 10000 +set horizontal-scroll-mode on +set mark-directories on +set mark-modified-lines off +set mark-symlinked-directories on +set match-hidden-files on +set page-completions on +set print-completions-horizontally on +set revert-all-at-newline off set show-all-if-ambiguous on +set show-all-if-unmodified on +set skip-completed-text on set visible-stats on -set page-completions off + $if mode=vi -set keymap vi-command -# these are for vi-command mode -"\e[A": history-search-backward -"\e[B": history-search-forward -set keymap vi-insert -# these are for vi-insert mode -"\e[A": history-search-backward -"\e[B": history-search-forward + set keymap vi-command + # these are for vi-command mode + "\e[A": history-search-backward + "\e[B": history-search-forward + Control-l: clear-screen + set keymap vi-insert + # these are for vi-insert mode + "\e[A": history-search-backward + "\e[B": history-search-forward + Control-l: clear-screen $endif diff --git a/scripts/install-prefs b/scripts/install-prefs index e0960d2..68fadb7 100755 --- a/scripts/install-prefs +++ b/scripts/install-prefs @@ -280,7 +280,7 @@ if [ $EXTRA == 1 ]; then inst sl ffmpeg youtube-dl if [ $ARCH == 1 ]; then - altInst pdftk translate-shell git-lfs js-beautify + altInst pdftk translate-shell git-lfs js-beautify insect fi # Extra GUI diff --git a/vimrc b/vimrc index 9f319f7..b4a254c 100644 --- a/vimrc +++ b/vimrc @@ -44,7 +44,7 @@ nmap :UndotreeToggle:UndotreeFocus """ CTRLP """ let g:ctrlp_custom_ignore = { - \ 'dir': '\v([\/]\.(git|hg|svn)|node_modules|bower_components|__pycache__|vendor|output)$', + \ 'dir': '\v([\/]\.(git|hg|svn)|node_modules|bower_components|__pycache__|vendor|output|buildroot)$', \ 'file': '\v\.(exe|so|dll)$', \ 'link': 'SOME_BAD_SYMBOLIC_LINKS', \ }