Thingies
This commit is contained in:
parent
d11432643f
commit
b44b414829
2
bashrc
2
bashrc
|
@ -46,8 +46,6 @@ alias dmesg='dmesg --ctime'
|
||||||
|
|
||||||
# Frequent mistakes
|
# Frequent mistakes
|
||||||
alias systemclt=systemctl
|
alias systemclt=systemctl
|
||||||
alias docker='sudo docker'
|
|
||||||
alias docker-compose='sudo docker-compose'
|
|
||||||
|
|
||||||
# Shortcuts for commonly used commands
|
# Shortcuts for commonly used commands
|
||||||
alias ll="ls -l $LS_OPTIONS"
|
alias ll="ls -l $LS_OPTIONS"
|
||||||
|
|
36
inputrc
36
inputrc
|
@ -1,16 +1,34 @@
|
||||||
$include /etc/inputrc
|
$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 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-ambiguous on
|
||||||
|
set show-all-if-unmodified on
|
||||||
|
set skip-completed-text on
|
||||||
set visible-stats on
|
set visible-stats on
|
||||||
set page-completions off
|
|
||||||
$if mode=vi
|
$if mode=vi
|
||||||
set keymap vi-command
|
set keymap vi-command
|
||||||
# these are for vi-command mode
|
# these are for vi-command mode
|
||||||
"\e[A": history-search-backward
|
"\e[A": history-search-backward
|
||||||
"\e[B": history-search-forward
|
"\e[B": history-search-forward
|
||||||
set keymap vi-insert
|
Control-l: clear-screen
|
||||||
# these are for vi-insert mode
|
set keymap vi-insert
|
||||||
"\e[A": history-search-backward
|
# these are for vi-insert mode
|
||||||
"\e[B": history-search-forward
|
"\e[A": history-search-backward
|
||||||
|
"\e[B": history-search-forward
|
||||||
|
Control-l: clear-screen
|
||||||
$endif
|
$endif
|
||||||
|
|
||||||
|
|
|
@ -280,7 +280,7 @@ if [ $EXTRA == 1 ]; then
|
||||||
inst sl ffmpeg youtube-dl
|
inst sl ffmpeg youtube-dl
|
||||||
|
|
||||||
if [ $ARCH == 1 ]; then
|
if [ $ARCH == 1 ]; then
|
||||||
altInst pdftk translate-shell git-lfs js-beautify
|
altInst pdftk translate-shell git-lfs js-beautify insect
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Extra GUI
|
# Extra GUI
|
||||||
|
|
2
vimrc
2
vimrc
|
@ -44,7 +44,7 @@ nmap <F7> :UndotreeToggle<CR>:UndotreeFocus<CR>
|
||||||
""" CTRLP """
|
""" CTRLP """
|
||||||
|
|
||||||
let g:ctrlp_custom_ignore = {
|
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)$',
|
\ 'file': '\v\.(exe|so|dll)$',
|
||||||
\ 'link': 'SOME_BAD_SYMBOLIC_LINKS',
|
\ 'link': 'SOME_BAD_SYMBOLIC_LINKS',
|
||||||
\ }
|
\ }
|
||||||
|
|
Loading…
Reference in a new issue