aboutsummaryrefslogtreecommitdiff
path: root/atom/config.cson
diff options
context:
space:
mode:
authorbozo.kopic <bozo.kopic@gmail.com>2015-05-12 21:18:32 +0200
committerbozo.kopic <bozo.kopic@gmail.com>2020-02-26 00:33:29 +0100
commit1e263266388c0b6cd39e09d81513e32aedc4268c (patch)
tree129f9d7620892ff9eb50f3738ff38de9155b76d1 /atom/config.cson
.
Diffstat (limited to 'atom/config.cson')
-rw-r--r--atom/config.cson102
1 files changed, 102 insertions, 0 deletions
diff --git a/atom/config.cson b/atom/config.cson
new file mode 100644
index 0000000..c5f0683
--- /dev/null
+++ b/atom/config.cson
@@ -0,0 +1,102 @@
+"*":
+ Repl:
+ python3: "python"
+ "autoclose-html":
+ forceInline: [
+ "*"
+ ]
+ "autocomplete-python":
+ useKite: false
+ autosave: {}
+ core:
+ disabledPackages: [
+ "linter"
+ ]
+ telemetryConsent: "no"
+ themes: [
+ "atom-dark-ui"
+ "monokai"
+ ]
+ editor:
+ fontFamily: "Source Code Pro"
+ invisibles: {}
+ scrollPastEnd: true
+ showIndentGuide: true
+ tabLength: 4
+ "exception-reporting":
+ userId: "1bf124c7-3f32-dd9a-658e-b3fb13caee50"
+ "ide-python":
+ pylsPlugins:
+ autopep8:
+ enabled: false
+ flake8:
+ enabled: true
+ jedi_completion:
+ include_params: false
+ jedi_definition:
+ follow_builtin_imports: true
+ follow_imports: true
+ mccabe:
+ enabled: false
+ pyflakes:
+ enabled: false
+ linter: {}
+ "linter-flake8": {}
+ "linter-ui-default":
+ panelHeight: 192
+ "lisp-paredit":
+ enabled: false
+ strict: false
+ minimap:
+ plugins:
+ bookmarks: true
+ bookmarksDecorationsZIndex: 0
+ codeglance: true
+ codeglanceDecorationsZIndex: 0
+ cursorline: true
+ cursorlineDecorationsZIndex: 0
+ "git-diff": true
+ "git-diffDecorationsZIndex": 0
+ "highlight-selected": true
+ "highlight-selectedDecorationsZIndex": 0
+ "split-diff": true
+ "split-diffDecorationsZIndex": 0
+ "one-dark-ui":
+ layoutMode: "Compact"
+ "rst-preview-pandoc":
+ pandocOpts: "-frst -thtml --webtex"
+ "spell-check":
+ grammars: [
+ "source.yaml"
+ "text.plain"
+ "text.restructuredtext"
+ ]
+ localePaths: [
+ "/usr/share/myspell/dicts/en_US.dic"
+ ]
+ locales: [
+ "en-US"
+ ]
+ "split-diff":
+ ignoreWhitespace: true
+ syncHorizontalScroll: true
+ "symbols-tree-view":
+ defaultWidth: 400
+ tabs:
+ usePreviewTabs: true
+ "toggle-packages":
+ togglePackages: [
+ "vim-mode-plus"
+ ]
+ "tool-bar":
+ visible: false
+ "tree-view": {}
+ "vim-mode": {}
+ welcome:
+ showOnStartup: false
+ "yaml-path":
+ activateOnStart: "Don't show on start"
+".clojure.source":
+ editor:
+ autoIndent: false
+ autoIndentOnPaste: false