2022-05-03 14:38:32 +00:00
|
|
|
@echo off
|
2022-05-03 14:46:47 +00:00
|
|
|
Echo Removing %userprofile%\.atom\packages...
|
2022-05-03 14:38:32 +00:00
|
|
|
rmdir /S %userprofile%\.atom\packages
|
2022-05-03 14:46:47 +00:00
|
|
|
|
|
|
|
Echo Re-Creating %userprofile%\.atom\packages
|
2022-05-03 14:38:32 +00:00
|
|
|
mkdir %userprofile%\.atom\packages
|
2022-05-03 14:46:47 +00:00
|
|
|
|
|
|
|
Echo Installing James' Plugins
|
2022-05-03 14:38:32 +00:00
|
|
|
apm install atom-beautify atom-discord atom-material-syntax atom-material-syntax-dark atom-material-syntax-light atom-material-ui auto-update-plus busy-signal file-icons intentions language-batchfile language-powershell linter linter-docker linter-ui-default markdown-preview-enhanced markdown-table-formatter minimap minimap-autohider minimap-bookmarks minimap-git-diff minimap-lens minimap-selection project-manager script split-diff tab-title teletype title-bar-replacer tree-view-git-status
|
2022-05-03 14:46:47 +00:00
|
|
|
|
|
|
|
Echo Removing Atom Configuration
|
2022-05-03 14:38:32 +00:00
|
|
|
rm %userprofile%\.atom\config.cson
|
2022-05-03 14:46:47 +00:00
|
|
|
|
|
|
|
Echo Copying new Atom Configuration
|
2022-05-03 14:38:32 +00:00
|
|
|
cp config.cson %userprofile%\.atom\config.cson
|
|
|
|
pause
|