Embiggen history size, yaml indent as 2

This commit is contained in:
Nicole Tietz-Sokolskaya 2020-02-07 08:51:56 -05:00
parent a2016edfd5
commit b8dda344da
2 changed files with 5 additions and 2 deletions

View File

@ -17,8 +17,8 @@ alias update_configs="cd ~/Code/ntietz/config; git pull; cd -; source ~/.profile
export EDITOR=vim
# set history
export HISTSIZE=1000 # very large history
export HISTFILESIZE=10000 # very large history
export HISTSIZE=1000000 # very large history
export HISTFILESIZE=10000000 # very large history
export HISTCONTROL=ignoreboth:erasedups # ignore duplicate history entries
shopt -s histappend # append to the history when the shell exits (instead of overwriting)

View File

@ -5,3 +5,6 @@ trim_trailing_whitespace = true
[Makefile]
indent_style = tab
[*.{yaml,yml}]
indent_size = 2