From 1d999595d1e0999f79cf63625eaa5a6a1e56e47c Mon Sep 17 00:00:00 2001 From: Christian Baer Date: Thu, 2 Jul 2020 14:51:26 +0200 Subject: [PATCH] Added Atom config --- .atom/config.cson | 24 ++++++++++++++++++++++++ .atom/pkg.list | 8 ++++++++ init/mac.sh | 4 ++++ 3 files changed, 36 insertions(+) create mode 100644 .atom/config.cson create mode 100644 .atom/pkg.list diff --git a/.atom/config.cson b/.atom/config.cson new file mode 100644 index 0000000..2c6a23d --- /dev/null +++ b/.atom/config.cson @@ -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 diff --git a/.atom/pkg.list b/.atom/pkg.list new file mode 100644 index 0000000..6592d23 --- /dev/null +++ b/.atom/pkg.list @@ -0,0 +1,8 @@ +color-picker +markdown-preview-enhanced +minimap +minimap-cursorline +minimap-pigments +nord-atom-syntax +nord-atom-ui +pigments diff --git a/init/mac.sh b/init/mac.sh index 1af9605..a055e55 100755 --- a/init/mac.sh +++ b/init/mac.sh @@ -238,6 +238,10 @@ find $MAC_NATIVEFIERTMP -depth 2 -name "*.app" -exec cp -rf {} /Applications \; rm -rf $MAC_NATIVEFIERTMP +echo ">>> Setting up Atom" + +apm install --packages-file ~/.atom/pkg.list + ## Set zsh from brew as default shell echo ">>> Setting /usr/local/bin/zsh as default shell for $USER" sudo chsh -s /usr/local/bin/zsh $USER