Latest
This commit is contained in:
parent
db8c2dbcb2
commit
b37f9021d0
3 changed files with 7 additions and 2 deletions
|
@ -39,7 +39,6 @@ Brewfile
|
|||
.tmux.conf.local
|
||||
.v8flags*
|
||||
.vagrant.d/
|
||||
.viminfo
|
||||
.volta/
|
||||
.vscode-oss/
|
||||
.wgetrc
|
||||
|
|
|
@ -25,6 +25,12 @@ if [ -f "$HOME/.wget-hsts" ]; then
|
|||
rm -f "$HOME/.wget-hsts"
|
||||
fi
|
||||
|
||||
### Remove .viminfo
|
||||
# No idea how this is being created
|
||||
if [ -f "$HOME/.viminfo" ]; then
|
||||
sudo rm -f "$HOME/.viminfo"
|
||||
fi
|
||||
|
||||
### Remove .wrangler
|
||||
# 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
|
||||
|
|
|
@ -121,7 +121,7 @@ configureGPG() {
|
|||
disableDStoreFileCreation() {
|
||||
if command -v m > /dev/null; then
|
||||
logg info 'Disabling creation of .DS_Store files'
|
||||
echo y | m dir dsfiles off
|
||||
echo y | m dir dsfiles off > /dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue