diff options
author | xyz <gky44px1999@gmail.com> | 2021-11-01 01:16:24 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-11-01 01:16:24 -0700 |
commit | b2d848182675d0b2f8209566a9ab6e0507230eab (patch) | |
tree | 8be33f47da7ae847088bd46edd4e63b30a51c2a4 /home/xyz/.profile | |
parent | 8075769f52eef36095388fe94035571741e923ea (diff) |
.profile more histfile size, seperate PATH declare and assign as suggestted by shellcheck
Diffstat (limited to 'home/xyz/.profile')
-rw-r--r-- | home/xyz/.profile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/home/xyz/.profile b/home/xyz/.profile index 7534fb25..65538c3c 100644 --- a/home/xyz/.profile +++ b/home/xyz/.profile @@ -20,9 +20,10 @@ export XDG_MUSIC_DIR="$XDG_MUSIC_DIR" export XDG_PICTURES_DIR="$XDG_PICTURES_DIR" export XDG_VIDEOS_DIR="$XDG_VIDEOS_DIR" -export PATH="$(find "$HOME/.local/bin" -type d -exec printf '%s:' '{}' \+)$PATH" -export HISTSIZE=7000 -export HISTFILESIZE=7000 +PATH="$(find "$HOME/.local/bin" -type d -exec printf '%s:' '{}' \+)$PATH" +export PATH +export HISTSIZE=10000 +export HISTFILESIZE=10000 export EDITOR=nvim export BROWSER=firefox |