diff options
author | xyz <gky44px1999@gmail.com> | 2021-07-22 12:29:46 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-07-22 12:29:46 -0700 |
commit | 42dc707e819e6258724eec5421dcf1527c609d46 (patch) | |
tree | 66e5bcd61697600d358d5b87baa26088f3e8fd9f | |
parent | c82a870c68cab8ca47291706f5478fe427aa0a41 (diff) |
add history size
-rw-r--r-- | .bash_profile | 4 | ||||
-rw-r--r-- | .bashrc | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/.bash_profile b/.bash_profile index 5251d125..21a3fb5d 100644 --- a/.bash_profile +++ b/.bash_profile @@ -9,8 +9,8 @@ export XDG_CACHE_HOME="$HOME/.cache" export XDG_DATA_HOME="$HOME/.local/share" export PATH="$(find ~/.local/bin -type d -printf %p:)$PATH" -export HISTSIZE=2000 -export HISTFILESIZE=2000 +export HISTSIZE=3000 +export HISTFILESIZE=3000 export MANPAGER="nvim +Man!" export EDITOR=nvim @@ -23,10 +23,8 @@ alias grep="grep --color=auto" alias diff="diff --color=auto" alias ll="ls -lAh --color=auto --group-directories-first" -alias cfgc="/usr/bin/git --git-dir=$HOME/.mycfg_cross_platform/ --work-tree=$HOME" -alias cfgl="/usr/bin/git --git-dir=$HOME/.mycfg_local/ --work-tree=$HOME" -#alias mlfm="mpv --loop-file=inf --video=no" -#alias mlpm="mpv --loop-playlist=inf --video=no" +#alias cfgc="/usr/bin/git --git-dir=$HOME/.mycfg_cross_platform/ --work-tree=$HOME" +#alias cfgl="/usr/bin/git --git-dir=$HOME/.mycfg_local/ --work-tree=$HOME" alias v="$EDITOR" alias g=git |