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
|
.tmux.conf.local
|
||||||
.v8flags*
|
.v8flags*
|
||||||
.vagrant.d/
|
.vagrant.d/
|
||||||
.viminfo
|
|
||||||
.volta/
|
.volta/
|
||||||
.vscode-oss/
|
.vscode-oss/
|
||||||
.wgetrc
|
.wgetrc
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue