Skip to content

Instantly share code, notes, and snippets.

@KSXGitHub
Created January 10, 2016 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KSXGitHub/2ae5c4a91648c93e2458 to your computer and use it in GitHub Desktop.
Save KSXGitHub/2ae5c4a91648c93e2458 to your computer and use it in GitHub Desktop.
my config.cson for command-executor
"*":
welcome:
showOnStartup: false
core:
themes: [
"ksx-matrix-ui"
"ksx-matrix"
]
projectHome: "D:\\AtomProjects"
disabledPackages: [
"tool-bar"
"minimap"
"drag-drop-text"
"mocha-ui"
"wrap-guide"
"sync-settings"
"package-list"
"spell-check"
"gpp-compiler"
"git-plus"
"atom-runner"
"audio"
"pdf-view"
]
openEmptyEditorOnStart: false
editor:
invisibles: {}
fontFamily: "consolas"
tabLength: 4
tabType: "hard"
fontSize: 13
"tool-bar":
visible: false
"markdown-preview": {}
minimap:
absoluteMode: true
"drag-drop-text": {}
"file-icons":
onChanges: true
tabPaneIcon: false
"cmd-exec":
commands: [
{
target: [
"atom-workspace"
]
data:
"utils:git-bash":
type: "spawn"
path: "D:\\Git\\Git\\git-bash.exe"
"utils:mintty":
type: "spawn"
path: "D:\\Git\\Git\\git-bash.exe"
"utils:node-es-staging":
type: "spawn"
path: "cmd /c start node --es-staging"
"utils:start-all-clouds":
type: "spawn"
path: "startallclouds.cmd"
console: true
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
"utils:store-config":
type: "spawn"
path: "storeconfig.cmd"
attached: true
console: true
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
"os:cmd":
type: "spawn"
path: "cmd /c start cmd"
"os:taskmgr": "cmd /c taskmgr"
"os:explorer": "explorer ."
"console:cmd":
type: "spawn"
path: "cmd"
console: true
hideInputText: true
utils: [
"clear"
"start"
"stdin"
"beep"
"alert"
"error"
]
closeOnExit: true
"console:bash":
type: "spawn"
path: "bash"
console: true
utils: [
"clear"
"alert"
"error"
"write"
"stdin"
"environ"
"beep"
"start"
"execute"
"popup"
]
closeOnExit: true
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
"direct-launch:execute-py":
type: "spawn"
path: "atom-direct-launch.cmd ${CURRENT_DIR} .direct-launch/execute.py"
useJSTemplateString: true
console: true
attached: true
utils: [
"clear"
]
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
"direct-launch:build-py":
type: "spawn"
path: "atom-direct-launch.cmd ${CURRENT_DIR} .direct-launch/build.py"
useJSTemplateString: true
console: true
attached: true
utils: [
"clear"
]
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
"direct-launch-no-console:execute-py":
type: "spawn"
path: "atom-direct-launch.cmd ${CURRENT_DIR} .direct-launch/execute.py"
attached: true
useJSTemplateString: true
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
"direct-launch-no-console:build-py":
type: "spawn"
path: "atom-direct-launch.cmd ${CURRENT_DIR} .direct-launch/build.py"
attached: true
useJSTemplateString: true
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
"gnu-compile:cpp-exe":
type: "spawn"
path: "g++ -std=c++14 -Wall -Wextra -o ${path.basename(CURRENT_FILE, '.cpp')}.exe ${CURRENT_FILE}"
attached: true
useJSTemplateString: true
console: true
paneItemPosition: "right"
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
"run:cpp-exe":
type: "spawn"
path: "${path.basename(CURRENT_FILE, '.cpp')}.exe"
useJSTemplateString: true
console: true
paneItemPosition: "right"
classes: [
"enable-pane-item-control-helper"
"check-before-close"
]
}
]
"one-dark-ui": {}
"mocha-ui": {}
"git-plus": {}
"highlight-selected": {}
"command-executer": {}
"sync-settings":
_analyticsUserId: "0b5e1e8a-e0a3-4fab-b938-2f7436e67dc4"
"spell-check": {}
"gpp-compiler": {}
"pdf-view": {}
".js.source":
editor:
autoIndent: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment