From b8dda344dabdac747585a868791428c638ffabee Mon Sep 17 00:00:00 2001 From: Nicole Tietz-Sokolskaya Date: Fri, 7 Feb 2020 08:51:56 -0500 Subject: [PATCH] Embiggen history size, yaml indent as 2 --- bash/.profile | 4 ++-- editorconfig/.editorconfig | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bash/.profile b/bash/.profile index ccd4b19..e5d5205 100644 --- a/bash/.profile +++ b/bash/.profile @@ -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) diff --git a/editorconfig/.editorconfig b/editorconfig/.editorconfig index 0aa9459..f1f0ee6 100644 --- a/editorconfig/.editorconfig +++ b/editorconfig/.editorconfig @@ -5,3 +5,6 @@ trim_trailing_whitespace = true [Makefile] indent_style = tab + +[*.{yaml,yml}] +indent_size = 2