فهرست منبع

Install some more packages

Kevin Heinicke 8 سال پیش
والد
کامیت
4e0d990bb8
3فایلهای تغییر یافته به همراه50 افزوده شده و 6 حذف شده
  1. 1 0
      .gitignore
  2. 28 6
      atom/config.cson
  3. 21 0
      atom/markdown-preview-plus.cson

+ 1 - 0
.gitignore

@@ -4,3 +4,4 @@ atom/.*
 atom/blob-store/
 atom/compile-cache/
 atom/storage/
+atom/packages/

+ 28 - 6
atom/config.cson

@@ -1,20 +1,42 @@
 "*":
+  "autocomplete-python":
+    useKite: false
   core:
+    closeDeletedFileTabs: true
     disabledPackages: [
-      "whitespace"
+      "git-time-machine"
+      "markdown-preview"
     ]
+    telemetryConsent: "no"
     themes: [
       "one-light-ui"
       "solarized-light-syntax"
     ]
   editor:
+    autoIndentOnPaste: false
     fontFamily: "Source Code Pro"
     fontSize: 16
+    invisibles: {}
   "exception-reporting":
-    userId: "ab2d6c57-858a-4413-8c4b-c8beb7547064"
-  "trailing-spaces": {}
+    userId: "f97fbf72-4900-4b83-9479-351989e3d1bc"
+  "git-diff":
+    showIconsInEditorGutter: true
+  "linter-ui-default":
+    panelHeight: 226
+  "markdown-preview-plus":
+    enableLatexRenderingByDefault: true
+  "minimap-plus": {}
+  "split-diff":
+    diffWords: true
+    ignoreWhitespace: true
+    leftEditorColor: "red"
+    rightEditorColor: "green"
+    scrollSyncType: "Vertical + Horizontal"
+  "vim-mode-plus":
+    useSmartcaseForSearch: true
   welcome:
     showOnStartup: false
-  whitespace:
-    ensureSingleTrailingNewline: false
-    ignoreWhitespaceOnCurrentLine: false
+  "you-complete-me":
+    globalExtraConfig: "~/.ycm_extra_conf.py"
+    pythonExecutable: "python3"
+    ycmdPath: "/Users/kheinicke/repos/ycmd/"

+ 21 - 0
atom/markdown-preview-plus.cson

@@ -0,0 +1,21 @@
+# You can place LaTeX Macros here.
+# They are written as coffeescript objects in CSON.
+# So don't forget to escape your backslashes!
+# Here are some examples to get you going:
+
+# A zero argument macro
+# This is just an alias for \theta.
+
+# th: "{\\theta}" # Example usage: $\th$
+
+# A one argument macro
+# This one gives you "1 over something" as a fraction.
+
+# inv: ["{\\frac{1}{#1}}",1] # Example usage: $\inv{x}$
+
+# A two argument macro
+# This one gives you a fraction with nicely typeset parentheses on either side.
+
+# pfrac: ["{\\left(\\frac{#1}{#2}\\right)}",2] # Example usage: $\pfrac{x}{y}$
+
+# You can use up to 9 arguments like this!