added Atom Config Script

This commit is contained in:
Jesse James Isler 2022-05-03 16:38:32 +02:00
parent ae816713fc
commit 94c6755b5f
2 changed files with 51 additions and 0 deletions

44
atom/config.cson Normal file
View File

@ -0,0 +1,44 @@
"*":
core:
disabledPackages: [
"markdown-preview"
]
telemetryConsent: "no"
themes: [
"atom-material-ui"
"atom-material-syntax-dark"
]
titleBar: "hidden"
uriHandlerRegistration: "always"
editor:
fontSize: 11
maxScreenLineLength: 500999
"exception-reporting":
userId: "cb3f8bf6-fe41-4cb7-b545-23ea6b786fe6"
"file-icons":
onChanges: true
"linter-ui-default":
showPanel: true
"markdown-preview-enhanced":
enableTypographer: true
previewPanePosition: "down"
previewTheme: "atom-dark.css"
revealjsTheme: "beige.css"
minimap:
plugins:
bookmarks: true
bookmarksDecorationsZIndex: 0
"git-diff": true
"git-diffDecorationsZIndex": 0
"lens-mode": true
"lens-modeDecorationsZIndex": 0
"minimap-autohider": true
"minimap-autohiderDecorationsZIndex": 0
selection: true
selectionDecorationsZIndex: 0
"title-bar-replacer":
general:
altGivesFocus: false
menuBarMnemonics: false
welcome:
showOnStartup: false

7
atom/installscript.bat Normal file
View File

@ -0,0 +1,7 @@
@echo off
rmdir /S %userprofile%\.atom\packages
mkdir %userprofile%\.atom\packages
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
rm %userprofile%\.atom\config.cson
cp config.cson %userprofile%\.atom\config.cson
pause