Skip to content

Instantly share code, notes, and snippets.

@casssiahaluu
Last active April 25, 2019 17:21
Show Gist options
  • Save casssiahaluu/54cbdb4b2adcd2f282adb06ab535a5fd to your computer and use it in GitHub Desktop.
Save casssiahaluu/54cbdb4b2adcd2f282adb06ab535a5fd to your computer and use it in GitHub Desktop.
Flex Toolbar Config
[
{
type: "button"
icon: "pencil-alt"
iconset: "fa"
callback: "flex-tool-bar:edit-config-file"
tooltip: "Edit Tool Bar"
style:
color: "#fff"
}
{
type: "button"
icon: "repo-clone"
callback: "application:add-project-folder"
tooltip: "Add Project Folder"
style:
color: "#fa6d28"
}
{
type: "button"
icon: "file-alt"
iconset: "fa"
callback: "application:new-file"
tooltip: "New File"
style:
color: "#fabf28"
}
{
type: "button"
icon: "redo-alt"
iconset: "fa"
callback: "pane:reopen-closed-item"
tooltip: "Reopen Last Item"
style:
color: "#c3fa28"
}
{
type: "spacer"
}
{
type: 'button'
tooltip: 'Fold All'
callback: 'editor:fold-all'
icon: 'chevron-circle-up'
iconset: 'fa'
style:
color: "#39fa28"
}
{
type: 'button'
tooltip: 'Fold Selected'
callback: 'editor:fold-selection'
icon: 'minus-circle'
iconset: 'fa'
style:
color: "#28faa2"
}
{
type: 'button'
tooltip: 'Unfold All'
callback: 'editor:unfold-all'
icon: 'chevron-circle-down'
iconset: 'fa'
style:
color: "#32ff6b"
}
{
type: "button"
icon: "chevron-up"
iconset: "fa"
callback: "pane:split-up"
tooltip: "Split Up"
style:
color: "#2889fa"
}
{
type: "button"
icon: "chevron-down"
iconset: "fa"
callback: "pane:split-down"
tooltip: "Split down"
style:
color: "#2863fa"
}
{
type: "button"
icon: "chevron-left"
iconset: "fa"
callback: "pane:split-left"
tooltip: "Split left"
style:
color: "#284afa"
}
{
type: "button"
icon: "chevron-right"
iconset: "fa"
callback: "pane:split-right"
tooltip: "Split right"
style:
color: "#282afa"
}
{
type: "button"
icon: "times"
iconset: "fa"
callback: "pane:close"
tooltip: "Close"
style:
color: "#5228fa"
}
{
type: "spacer"
}
{
type: "button"
icon: "brush"
iconset: "fa"
callback: "application:open-your-stylesheet"
tooltip: "Stylesheet"
style:
color: "#c328fa"
}
{
type: "button"
icon: "hashtag"
iconset: "fa"
callback: "editor:toggle-line-comments"
tooltip: "Comment this line"
style:
color: "#fa28b9"
}
{
type: 'button'
tooltip: 'Beautify'
dependency: 'atom-beautify'
callback: 'atom-beautify:beautify-editor'
icon: 'magic'
iconset: 'fa'
style:
color: "#fa2854"
}
{
type: 'button'
tooltip: 'Open Command Palette'
callback: 'command-palette:toggle'
icon: 'align-justify'
iconset: 'fa'
style:
color: "#a30000"
}
{
type: 'button'
tooltip: 'Split Diff'
dependency: 'split-diff'
callback: 'split-diff:toggle'
icon: 'clone'
iconset: 'fa'
style:
color: "#e04312"
}
{
type: "button"
icon: "settings"
callback: "settings-view:open"
tooltip: "Settings View"
style:
color: "#d9b416"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment