Added Atom config

This commit is contained in:
Christian Baer 2020-07-02 14:51:26 +02:00
parent 00788d06be
commit 1d999595d1
3 changed files with 36 additions and 0 deletions

24
.atom/config.cson Normal file
View File

@ -0,0 +1,24 @@
"*":
core:
telemetryConsent: "no"
themes: [
"nord-atom-ui"
"nord-atom-syntax"
]
titleBar: "custom"
editor:
fontFamily: "Source Code Pro"
lineHeight: "1.4"
showIndentGuide: true
showInvisibles: true
softWrap: true
softWrapHangingIndent: 1
tabType: "hard"
minimap:
plugins:
cursorline: true
cursorlineDecorationsZIndex: 0
pigments: true
pigmentsDecorationsZIndex: 0
welcome:
showOnStartup: false

8
.atom/pkg.list Normal file
View File

@ -0,0 +1,8 @@
color-picker
markdown-preview-enhanced
minimap
minimap-cursorline
minimap-pigments
nord-atom-syntax
nord-atom-ui
pigments

View File

@ -238,6 +238,10 @@ find $MAC_NATIVEFIERTMP -depth 2 -name "*.app" -exec cp -rf {} /Applications \;
rm -rf $MAC_NATIVEFIERTMP rm -rf $MAC_NATIVEFIERTMP
echo ">>> Setting up Atom"
apm install --packages-file ~/.atom/pkg.list
## Set zsh from brew as default shell ## Set zsh from brew as default shell
echo ">>> Setting /usr/local/bin/zsh as default shell for $USER" echo ">>> Setting /usr/local/bin/zsh as default shell for $USER"
sudo chsh -s /usr/local/bin/zsh $USER sudo chsh -s /usr/local/bin/zsh $USER