Skip to content

Instantly share code, notes, and snippets.

@marshallbu
Last active July 24, 2017 23:05
Show Gist options
  • Select an option

  • Save marshallbu/02b06bc70c52a27c1c04 to your computer and use it in GitHub Desktop.

Select an option

Save marshallbu/02b06bc70c52a27c1c04 to your computer and use it in GitHub Desktop.
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to make opened Markdown files always be soft wrapped:
#
# path = require 'path'
#
# atom.workspaceView.eachEditorView (editorView) ->
# editor = editorView.getEditor()
# if path.extname(editor.getPath()) is '.md'
# editor.setSoftWrap(true)
os = require 'os'
hostname = os.hostname()
childProcess = require 'child_process'
# Problem: Atom won't inherit the $PATH variable set in your default OS X shell (Terminal).
# Solution: Launch an interactive shell and return $PATH from that. The interactive
# shell will run through all your various .files (.zshrc, .zshenv, etc.) before
# returning. Works well if your path is changed by NVM or RVM. Some existing solutions
# don't work if your shells output a MOTD or any other text before executing
# 'echo $PATH', as that will also be returned. Since your path _should_ be the last
# line output we can grab all text after the last newline character and use that as Atom's path.
#
# Some related issues:
# https://github.com/atom/atom/issues/6956
# https://github.com/atom-community/linter/issues/726
shellOutput = childProcess.execFileSync(process.env.SHELL, ['-i', '-c', 'echo $PATH']).toString().trim().split('\n')
process.env.PATH = shellOutput[shellOutput.length - 1]
# TODO: read this from my $HOME/.zshrc file
if hostname is 'lgml-mupshur1'
console.log "Init for #{hostname}"
if hostname is 'Adamantium'
console.log "Init for #{hostname}"
# Your keymap
#
# Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors
# to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
# Here's an example taken from Atom's built-in keymap:
#
# '.editor':
# 'enter': 'editor:newline'
#
# '.workspace':
# 'ctrl-P': 'core:move-up'
# 'ctrl-p': 'core:move-down'
#
[
{
"name": "about",
"version": "1.5.0"
},
{
"name": "advanced-open-file",
"version": "0.16.3"
},
{
"name": "aligner",
"version": "0.22.0"
},
{
"name": "aligner-css",
"version": "1.2.0"
},
{
"name": "aligner-php",
"version": "1.0.0"
},
{
"name": "aligner-python",
"version": "1.0.1"
},
{
"name": "aligner-ruby",
"version": "1.4.0"
},
{
"name": "archive-view",
"version": "0.61.1"
},
{
"name": "atom-alignment",
"version": "0.12.1"
},
{
"name": "atom-beautify",
"version": "0.29.9"
},
{
"name": "atom-dark-syntax",
"version": "0.27.0",
"theme": "syntax"
},
{
"name": "atom-dark-ui",
"version": "0.51.0",
"theme": "ui"
},
{
"name": "atom-light-syntax",
"version": "0.28.0",
"theme": "syntax"
},
{
"name": "atom-light-ui",
"version": "0.43.0",
"theme": "ui"
},
{
"name": "atom-material-syntax",
"version": "0.4.6",
"theme": "syntax"
},
{
"name": "atom-material-ui",
"version": "1.2.13",
"theme": "ui"
},
{
"name": "atom-terminal",
"version": "0.8.0"
},
{
"name": "atom-typescript",
"version": "9.0.0"
},
{
"name": "autocomplete-atom-api",
"version": "0.10.0"
},
{
"name": "autocomplete-css",
"version": "0.11.1"
},
{
"name": "autocomplete-html",
"version": "0.7.2"
},
{
"name": "autocomplete-plus",
"version": "2.29.2"
},
{
"name": "autocomplete-snippets",
"version": "1.10.0"
},
{
"name": "autoflow",
"version": "0.27.0"
},
{
"name": "autoprefixer",
"version": "3.2.0"
},
{
"name": "autosave",
"version": "0.23.1"
},
{
"name": "background-tips",
"version": "0.26.0"
},
{
"name": "base16-syntax",
"version": "1.7.0",
"theme": "syntax"
},
{
"name": "base16-tomorrow-dark-theme",
"version": "1.1.0",
"theme": "syntax"
},
{
"name": "base16-tomorrow-light-theme",
"version": "1.1.1",
"theme": "syntax"
},
{
"name": "bezier-curve-editor",
"version": "0.7.2"
},
{
"name": "blame",
"version": "0.10.0"
},
{
"name": "block-cursor",
"version": "0.13.1"
},
{
"name": "bookmarks",
"version": "0.39.0"
},
{
"name": "bracket-matcher",
"version": "0.82.0"
},
{
"name": "change-case",
"version": "0.6.0"
},
{
"name": "color-picker",
"version": "2.2.0"
},
{
"name": "command-palette",
"version": "0.38.0"
},
{
"name": "compare-files",
"version": "0.6.2"
},
{
"name": "copy-filename",
"version": "1.0.1"
},
{
"name": "cursor-blink-interval",
"version": "0.3.1"
},
{
"name": "dash",
"version": "1.6.1"
},
{
"name": "deprecation-cop",
"version": "0.54.1"
},
{
"name": "dev-live-reload",
"version": "0.47.0"
},
{
"name": "docblockr",
"version": "0.7.3"
},
{
"name": "editorconfig",
"version": "1.4.1"
},
{
"name": "encoding-selector",
"version": "0.21.0"
},
{
"name": "exception-reporting",
"version": "0.38.0"
},
{
"name": "file-icons",
"version": "1.7.16"
},
{
"name": "find-and-replace",
"version": "0.199.0"
},
{
"name": "flex-tool-bar",
"version": "0.10.2"
},
{
"name": "fuzzy-finder",
"version": "1.0.5"
},
{
"name": "git-diff",
"version": "1.0.1"
},
{
"name": "git-history",
"version": "3.2.0"
},
{
"name": "git-plus",
"version": "5.16.2"
},
{
"name": "go-to-line",
"version": "0.30.0"
},
{
"name": "grammar-selector",
"version": "0.48.1"
},
{
"name": "highlight-selected",
"version": "0.11.2"
},
{
"name": "image-view",
"version": "0.57.0"
},
{
"name": "imdone-atom",
"version": "1.3.29"
},
{
"name": "incompatible-packages",
"version": "0.26.1"
},
{
"name": "javascript-snippets",
"version": "1.2.1"
},
{
"name": "jsonlint",
"version": "1.1.4"
},
{
"name": "keybinding-resolver",
"version": "0.35.0"
},
{
"name": "language-babel",
"version": "2.30.1"
},
{
"name": "language-c",
"version": "0.51.3"
},
{
"name": "language-clojure",
"version": "0.20.0"
},
{
"name": "language-coffee-script",
"version": "0.46.1"
},
{
"name": "language-csharp",
"version": "0.12.1"
},
{
"name": "language-css",
"version": "0.36.1"
},
{
"name": "language-docker",
"version": "1.1.6"
},
{
"name": "language-fsharp",
"version": "0.8.4"
},
{
"name": "language-generic-config",
"version": "1.1.0"
},
{
"name": "language-gfm",
"version": "0.85.0"
},
{
"name": "language-git",
"version": "0.12.1"
},
{
"name": "language-go",
"version": "0.42.0"
},
{
"name": "language-groovy",
"version": "0.6.0"
},
{
"name": "language-html",
"version": "0.44.1"
},
{
"name": "language-hyperlink",
"version": "0.16.0"
},
{
"name": "language-java",
"version": "0.17.0"
},
{
"name": "language-javascript",
"version": "0.110.0"
},
{
"name": "language-json",
"version": "0.18.0"
},
{
"name": "language-less",
"version": "0.29.3"
},
{
"name": "language-make",
"version": "0.21.1"
},
{
"name": "language-mustache",
"version": "0.13.0"
},
{
"name": "language-objective-c",
"version": "0.15.1"
},
{
"name": "language-perl",
"version": "0.34.0"
},
{
"name": "language-php",
"version": "0.37.0"
},
{
"name": "language-property-list",
"version": "0.8.0"
},
{
"name": "language-puppet",
"version": "0.19.1"
},
{
"name": "language-python",
"version": "0.43.1"
},
{
"name": "language-ruby",
"version": "0.68.5"
},
{
"name": "language-ruby-on-rails",
"version": "0.25.0"
},
{
"name": "language-sass",
"version": "0.46.0"
},
{
"name": "language-scala",
"version": "1.1.6"
},
{
"name": "language-shellscript",
"version": "0.21.1"
},
{
"name": "language-source",
"version": "0.9.0"
},
{
"name": "language-sql",
"version": "0.20.0"
},
{
"name": "language-text",
"version": "0.7.1"
},
{
"name": "language-todo",
"version": "0.27.0"
},
{
"name": "language-toml",
"version": "0.18.0"
},
{
"name": "language-xml",
"version": "0.34.4"
},
{
"name": "language-yaml",
"version": "0.25.2"
},
{
"name": "line-ending-selector",
"version": "0.4.1"
},
{
"name": "link",
"version": "0.31.1"
},
{
"name": "linter",
"version": "1.11.14"
},
{
"name": "linter-csslint",
"version": "1.3.2"
},
{
"name": "linter-eslint",
"version": "7.2.4"
},
{
"name": "linter-jscs",
"version": "4.0.5"
},
{
"name": "markdown-preview",
"version": "0.158.0"
},
{
"name": "markdown-writer",
"version": "2.3.6"
},
{
"name": "merge-conflicts",
"version": "1.4.4"
},
{
"name": "metrics",
"version": "0.53.1"
},
{
"name": "minimap",
"version": "4.24.7"
},
{
"name": "minimap-bookmarks",
"version": "0.3.1"
},
{
"name": "minimap-find-and-replace",
"version": "4.5.1"
},
{
"name": "minimap-git-diff",
"version": "4.3.1"
},
{
"name": "minimap-highlight-selected",
"version": "4.4.0"
},
{
"name": "minimap-linter",
"version": "1.1.1"
},
{
"name": "minimap-pigments",
"version": "0.2.1"
},
{
"name": "minimap-selection",
"version": "4.4.0"
},
{
"name": "monokai",
"version": "0.18.0",
"theme": "syntax"
},
{
"name": "notifications",
"version": "0.63.1"
},
{
"name": "one-dark-syntax",
"version": "1.2.0",
"theme": "syntax"
},
{
"name": "one-dark-ui",
"version": "1.3.1",
"theme": "ui"
},
{
"name": "one-light-syntax",
"version": "1.2.0",
"theme": "syntax"
},
{
"name": "one-light-ui",
"version": "1.3.1",
"theme": "ui"
},
{
"name": "open-in-browser",
"version": "0.4.7"
},
{
"name": "open-in-external-app",
"version": "0.1.0"
},
{
"name": "open-on-github",
"version": "1.0.1"
},
{
"name": "open-recent",
"version": "5.0.0"
},
{
"name": "package-generator",
"version": "1.0.0"
},
{
"name": "pigments",
"version": "0.31.0"
},
{
"name": "project-manager",
"version": "2.9.7"
},
{
"name": "regex-railroad-diagram",
"version": "0.16.0"
},
{
"name": "script",
"version": "3.8.1"
},
{
"name": "seti-syntax",
"version": "1.0.1",
"theme": "syntax"
},
{
"name": "seti-ui",
"version": "1.3.1",
"theme": "ui"
},
{
"name": "settings-view",
"version": "0.235.1"
},
{
"name": "snippets",
"version": "1.0.2"
},
{
"name": "solarized-dark-syntax",
"version": "1.0.2",
"theme": "syntax"
},
{
"name": "solarized-light-syntax",
"version": "1.0.2",
"theme": "syntax"
},
{
"name": "sort-lines",
"version": "0.14.0"
},
{
"name": "spell-check",
"version": "0.67.1"
},
{
"name": "ssh-config",
"version": "0.10.1"
},
{
"name": "status-bar",
"version": "1.2.3"
},
{
"name": "styleguide",
"version": "0.45.2"
},
{
"name": "symbol-gen",
"version": "1.3.1"
},
{
"name": "symbols-tree-view",
"version": "0.13.2"
},
{
"name": "symbols-view",
"version": "0.112.0"
},
{
"name": "sync-settings",
"version": "0.7.2"
},
{
"name": "tabs",
"version": "0.96.0"
},
{
"name": "tabs-to-spaces",
"version": "1.0.2"
},
{
"name": "timecop",
"version": "0.33.1"
},
{
"name": "todo-show",
"version": "1.6.0"
},
{
"name": "tool-bar",
"version": "1.0.0"
},
{
"name": "tree-view",
"version": "0.205.0"
},
{
"name": "tree-view-git-status",
"version": "1.0.1"
},
{
"name": "update-package-dependencies",
"version": "0.10.0"
},
{
"name": "welcome",
"version": "0.34.0"
},
{
"name": "whitespace",
"version": "0.32.2"
},
{
"name": "wrap-guide",
"version": "0.38.1"
}
]
'identity':
'title': 'identity'
'paths': [
'/Users/marshallbu/Projects/js_projects/identity'
]
'zugaa-api':
'title': 'zugaa-api'
'paths': [
'/Users/marshallbu/Projects/go_projects/zugaa-api'
]
'zugaa':
'title': 'zugaa'
'paths': [
'/Users/marshallbu/Projects/node_projects/zugaa'
]
'audio_reader':
'title': 'audio_reader'
'paths': [
'/Users/marshallbu/Projects/node_projects/audio_reader'
]
'audio_reader_fe':
'title': 'audio_reader_fe'
'paths': [
'/Users/marshallbu/Projects/node_projects/audio_reader_fe'
]
'zugaa_api':
'title': 'zugaa_api'
'paths': [
'/Users/marshallbu/Projects/node_projects/zugaa_api'
]
'daily-agenda':
'title': 'daily-agenda'
'paths': [
'/Users/marshallbu/Projects/js_projects/daily-agenda'
]
'tipfortip/ionic':
'title': 'tipfortip/ionic'
'paths': [
'/Users/marshallbu/Projects/tipfortip/ionic'
]
'settings':
'editor.tabLength': 2
'tipfortip/www':
'title': 'tipfortip/www'
'paths': [
'/Users/marshallbu/Projects/tipfortip/www'
]
'nickelflix':
'title': 'nickelflix'
'paths': [
'/Users/marshallbu/Projects/js_projects/nickelflix'
]
'settings':
'editor.tabLength': 2
tvui:
title: "tvui"
paths: [
"/Users/mupshur/Projects/tvui"
]
settings:
"editor.tabLength": 4
"editor.preferredLineLength": 100
"react-training":
title: "react-training"
paths: [
"/Users/mupshur/projects/react-training"
]
{
"atom-beautify": {
"general": {
"_analyticsUserId": "d9ea6703-851a-41f0-b74f-921c06efbf4c"
}
},
"atom-material-ui": {
"colors": {
"abaseColor": {
"alpha": 1,
"blue": 139,
"green": 125,
"red": 96
},
"predefinedColor": "Blue Grey"
},
"fonts": {},
"tabs": {
"compactTabs": true
},
"treeView": {
"blendTabs": true,
"compactList": true
},
"ui": {
"panelContrast": true,
"panelShadows": true
}
},
"autosave": {
"enabled": true
},
"base16-syntax": {
"scheme": "Chalk"
},
"block-cursor": {
"global": {
"blinkOff": {
"borderStyle": "underline",
"borderWidth": 0
},
"blinkOn": {
"backgroundColor": {
"red": 0,
"green": 0,
"blue": 0,
"alpha": 0
},
"borderColor": {
"red": 240,
"green": 2,
"blue": 40,
"alpha": 1
},
"borderStyle": "underline",
"borderWidth": 2
},
"cursorLineFix": true,
"pulseDuration": 300
}
},
"core": {
"customFileTypes": {
"source.ini": [
".buckconfig",
".flowconfig"
],
"source.json": [
".arcconfig"
],
"source.python": [
"BUCK"
]
},
"disabledPackages": [
"filetype-color",
"select-line",
"linter-scss-lint",
"emmet",
"language-jsx",
"linter-jsxhint",
"linter-jshint",
"linter-jsonlint",
"Zen",
"angularjs-snippets",
"coffee-lint",
"ionic-framework-snippets",
"linter-annotations",
"remember-window",
"tool-bar-main",
"language-freemarker",
"mark",
"language-javascript-jsx",
"autocomplete-haxe",
"ask-stack",
"atom-bootstrap3",
"git-tab-status",
"linter-coffeelint",
"indent-guide-improved",
"minimap-autohide",
"go-plus",
"git-blame",
"tree-view-open-files",
"angularjs",
"atom-handlebars",
"relative-numbers",
"nuclide",
"environment",
"react",
"auto-update-packages",
"omnisharp-atom",
"linter-jscs",
"language-haxe",
"atom-typescript",
"atom-yeoman",
"atom-pair",
"json-schema"
],
"ignoredNames": [
".git",
".svn",
".DS_Store",
"node_modules"
],
"projectHome": "/Users/marshallbu/Projects",
"themes": [
"one-dark-ui",
"base16-syntax"
]
},
"cursor-blink-interval": {
"cursorBlinkInterval": 1000
},
"docblockr": {},
"editor": {
"fontFamily": "Source Code Pro",
"fontSize": 15,
"invisibles": {},
"preferredLineLength": 100,
"showIndentGuide": true,
"softWrap": true,
"tabLength": 4
},
"exception-reporting": {
"userId": "29e8adf8-6883-df26-c219-58164cc3154e"
},
"file-icons": {
"forceShow": true
},
"file-watcher": {
"promptWhenFileHasChangedOnDisk": false
},
"filetype-color": {
"enabled": "false"
},
"flex-tool-bar": {
"showConfigButton": false
},
"fuzzy-finder": {},
"git-blame": {
"customCommitUrlTemplateString": "http://stash.nikedev.com/projects/NWV/repos/<%- repo %>/commits/<%- revision %>",
"useCustomUrlTemplateIfStandardRemotesFail": true
},
"git-diff": {
"showIconsInEditorGutter": true
},
"isotope-ui": {
"fontFamily": "Source Sans Pro",
"fontWeight": "Regular",
"matchEditorFont": true,
"minimalMode": true
},
"linter": {
"ignoredLinterErrors": [
"jshint"
],
"lintDebug": true,
"showErrorPanel": false
},
"linter-eslint": {
"disableFSCache": true
},
"linter-jscs": {
"onlyConfig": true
},
"metrics": {
"userId": "06761c11a5cc1038c6af02ae97e208040ed75803"
},
"minimap": {
"plugins": {
"bookmarks": true,
"bookmarksDecorationsZIndex": 0,
"find-and-replace": true,
"find-and-replaceDecorationsZIndex": 0,
"git-diff": true,
"git-diffDecorationsZIndex": 0,
"highlight-selected": true,
"highlight-selectedDecorationsZIndex": 0,
"linter": true,
"linterDecorationsZIndex": 0,
"minimap-autohide": false,
"pigments": true,
"pigmentsDecorationsZIndex": 0,
"selection": true,
"selectionDecorationsZIndex": 0
}
},
"nuclide": {
"nuclide-arcanist": {},
"nuclide-buck-files": {},
"nuclide-clang-atom": {},
"nuclide-datatip": {},
"nuclide-debugger-hhvm": {},
"nuclide-flow": {},
"nuclide-format-js": {},
"nuclide-hack": {},
"nuclide-health": {},
"nuclide-ios-simulator-logs": {},
"nuclide-ocaml": {},
"nuclide-output": {},
"nuclide-working-sets": {}
},
"one-dark-ui": {},
"one-light-ui": {
"layoutMode": "Compact"
},
"project-manager": {
"environmentSpecificProjects": true
},
"spell-check": {},
"sync-settings": {},
"tabs": {
"enableVcsColoring": true,
"tabScrolling": true,
"usePreviewTabs": true
},
"todo-show": {
"findTheseRegexes": [
"FIXMEs",
"/FIXME:?(.+$)/g",
"TODOs",
"/TODO:?(.+$)/g",
"CHANGEDs",
"/CHANGED:?(.+$)/g",
"XXXs",
"/XXX:?(.+$)/g",
"NOTEs",
"/NOTE:?(.+$)/g"
]
},
"tool-bar": {
"iconSize": "16px",
"position": "Left"
},
"tree-view": {
"hideVcsIgnoredFiles": true,
"squashDirectoryNames": true
},
"welcome": {
"showOnStartup": false
}
}
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
# '.source.coffee':
# 'Console log':
# 'prefix': 'log'
# 'body': 'console.log $1'
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it here:
# https://github.com/bevry/cson#what-is-cson
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
.tree-view {
}
atom-text-editor {
// /deep/ .indent-guide {
// box-sizing: border-box;
// box-shadow: none;
// border-left: 1px dotted rgba(80, 80, 80, 0.75);
// }
// NOTE: ligature support
// text-rendering: optimizeLegibility;
}
atom-text-editor .cursor {
}
@import "packages/file-icons/styles/icons";
@import "packages/file-icons/styles/items";
.icon-file-directory {
&:before { .fa; content: "\f07b"; }
}
.expanded > .list-item .icon-file-directory {
&:before { .fa; content: "\f07c"; }
}
[
{
type: "url",
icon: "octoface",
url: "http://github.com",
tooltip: "Github",
iconset: ""
},
{
type: "url",
icon: "book",
url: "https://developer.mozilla.org/enUS/",
tooltip: "MDN Mozilla Developer Network",
iconset: "fa"
},
{
type: "url",
icon: "stack-overflow",
url: "http://stackoverflow.com/",
tooltip: "stackoverflow",
iconset: "fa"
},
{
type: "url",
icon: "bitbucket",
url: "https://bitbucket.org/",
tooltip: "bitbucket",
iconset: "fa"
},
{
type: "url",
icon: "jsfiddle",
url: "https://jsfiddle.net/",
tooltip: "jsfiddle",
iconset: "fa"
},
{
type: "spacer"
},
{
type: "button",
icon: "document",
callback: "application:newfile",
tooltip: "New File",
iconset: "ion"
},
{
type: "button",
icon: "folder",
callback: "application:openfile",
tooltip: "Open...",
iconset: "ion"
},
{
type: "button",
icon: "columns",
callback: "pane:split-right",
tooltip: "Split Right",
iconset: "fa"
},
{
type: "spacer"
},
{
type: "button",
icon: "search",
callback: "findandreplace:show",
tooltip: "Find in Buffer",
iconset: "ion"
},
{
type: "button",
icon: "shuffle",
callback: "findandreplace:showreplace",
tooltip: "Replace in Buffer",
iconset: "ion"
},
{
type: "spacer"
},
{
type: "button",
icon: "markdown",
callback: "markdown-preview:toggle",
disable: "!markdown"
},
{
type: "button",
icon: "refresh",
callback: "window:reload",
iconset: "fa"
}
]
[
{
"type": "url",
"icon": "octoface",
"url": "http://github.com",
"tooltip": "Github",
"iconset": ""
},
{
"type": "url",
"icon": "book",
"url": "https://developer.mozilla.org/enUS/",
"tooltip": "MDN Mozilla Developer Network",
"iconset": "fa"
},
{
"type": "url",
"icon": "stack-overflow",
"url": "http://stackoverflow.com/",
"tooltip": "stackoverflow",
"iconset": "fa"
},
{
"type": "url",
"icon": "bitbucket",
"url": "https://bitbucket.org/",
"tooltip": "bitbucket",
"iconset": "fa"
},
{
"type": "url",
"icon": "jsfiddle",
"url": "https://jsfiddle.net/",
"tooltip": "jsfiddle",
"iconset": "fa"
},
{
"type": "spacer"
},
{
"type": "button",
"icon": "document",
"callback": "application:newfile",
"tooltip": "New File",
"iconset": "ion"
},
{
"type": "button",
"icon": "folder",
"callback": "application:openfile",
"tooltip": "Open...",
"iconset": "ion"
},
{
"type": "button",
"icon": "columns",
"callback": "pane:splitright",
"tooltip": "Split Right",
"iconset": "fa"
},
{
"type": "spacer"
},
{
"type": "button",
"icon": "search",
"callback": "findandreplace:show",
"tooltip": "Find in Buffer",
"iconset": "ion"
},
{
"type": "button",
"icon": "shuffle",
"callback": "findandreplace:showreplace",
"tooltip": "Replace in Buffer",
"iconset": "ion"
},
{
"type": "spacer"
},
{
"type": "button",
"icon": "markdown",
"callback": "markdownpreview:toggle",
"disable": "!markdown"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment