mirror of
https://github.com/opensiriusfox/bashrc.d.git
synced 2025-06-16 20:31:15 -07:00
Initial commit with core behavior
This commit is contained in:
commit
8c66602158
12 changed files with 502 additions and 0 deletions
14
misc.sh
Normal file
14
misc.sh
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
# random things I don't know how to sort
|
||||
complete -cf sudo
|
||||
|
||||
# Include the autojump tool if it exists
|
||||
if [[ -e /usr/share/autojump/autojump.sh ]]; then
|
||||
. /usr/share/autojump/autojump.sh
|
||||
fi
|
||||
|
||||
export LESS=R # colorize less output if we use a pipe
|
||||
HISTSIZE=2000
|
||||
HISTFILESIZE=10000
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue