This commit is contained in:
Brian Zalewski 2023-12-25 02:35:06 +00:00
parent db8c2dbcb2
commit b37f9021d0
3 changed files with 7 additions and 2 deletions

View file

@ -39,7 +39,6 @@ Brewfile
.tmux.conf.local .tmux.conf.local
.v8flags* .v8flags*
.vagrant.d/ .vagrant.d/
.viminfo
.volta/ .volta/
.vscode-oss/ .vscode-oss/
.wgetrc .wgetrc

View file

@ -25,6 +25,12 @@ if [ -f "$HOME/.wget-hsts" ]; then
rm -f "$HOME/.wget-hsts" rm -f "$HOME/.wget-hsts"
fi fi
### Remove .viminfo
# No idea how this is being created
if [ -f "$HOME/.viminfo" ]; then
sudo rm -f "$HOME/.viminfo"
fi
### Remove .wrangler ### Remove .wrangler
# Not sure how this is populating but the proper environment variables appear to be in place and nothing breaks when its removed # Not sure how this is populating but the proper environment variables appear to be in place and nothing breaks when its removed
if [ -d "$HOME/.wrangler" ]; then if [ -d "$HOME/.wrangler" ]; then

View file

@ -121,7 +121,7 @@ configureGPG() {
disableDStoreFileCreation() { disableDStoreFileCreation() {
if command -v m > /dev/null; then if command -v m > /dev/null; then
logg info 'Disabling creation of .DS_Store files' logg info 'Disabling creation of .DS_Store files'
echo y | m dir dsfiles off echo y | m dir dsfiles off > /dev/null
fi fi
} }