Last active
April 30, 2019 08:40
-
-
Save caporro/0ba5363cfe6d304880b7d6927405580b to your computer and use it in GitHub Desktop.
Atom Flex Tool Bar config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is used by Flex Tool Bar to create buttons on your Tool Bar. | |
# For more information how to use this package and create your own buttons, | |
# read the documentation on https://atom.io/packages/flex-tool-bar | |
[ | |
{ | |
type: "button" | |
icon: "gear" | |
callback: "flex-tool-bar:edit-config-file" | |
tooltip: "Edit Tool Bar" | |
} | |
{ | |
type: "spacer" | |
} | |
{ | |
type: "button" | |
text: "Un" | |
callback: "editor:unfold-all" | |
} | |
{ | |
type: "button" | |
text: "F2" | |
callback: "editor:fold-at-indent-level-2" | |
tooltip: "Fold level 2" | |
} | |
{ | |
type: "button" | |
icon: "folder-plus" | |
iconset: "mdi" | |
callback: "application:add-project-folder" | |
tooltip: "Open Project" | |
style: | |
color: "#68D89B" | |
} | |
{ | |
type: "button" | |
iconset: "mdi" | |
icon: "code-braces" | |
callback: "atom-beautify:beautify-editor" | |
tooltip: "Atom Beautify" | |
mode: "atom-text-editor" | |
style: | |
color: "#5090d9" | |
} | |
{ | |
type: "button" | |
icon: "terminal" | |
callback: "term3:open-split-down" | |
tooltip: "Open Shell" | |
mode: "atom-text-editor" | |
style: | |
color: "#5090d9" | |
} | |
{ | |
type: "url" | |
icon: "diff" | |
url: "http://tlrobinson.net/projects/javascript-fun/jsondiff/" | |
tooltip: "JSON Diff" | |
show: [ | |
'json' | |
] | |
style: | |
color: "#ADD8E6" | |
} | |
{ | |
type: "file" | |
iconset: "fa" | |
icon: "history" | |
file: "storage/logs/laravel.log" | |
tooltip: "Laravel Log" | |
} | |
{ | |
type: "file" | |
iconset: "fa" | |
icon: "history" | |
file: "/Users/claudio/code/appunti/errorlog" | |
tooltip: "Apache Error" | |
style: | |
color: "#ff0545" | |
} | |
{ | |
type: "file" | |
iconset: "fa" | |
icon: "history" | |
file: "trunk/Software/data/logs/application.log" | |
tooltip: "Zend Log" | |
style: | |
color: "#13dc10" | |
} | |
{ | |
type: "file" | |
icon: "repo" | |
file: "/Users/claudio/code/appunti/_appunti.md" | |
tooltip: "Appunti MD" | |
style: | |
color: "#E5A87E" | |
} | |
{ | |
type: 'button' | |
tooltip: 'Markdown Preview' | |
dependency: 'markdown-preview-plus' | |
callback: 'markdown-preview-plus:toggle' | |
disable: '!markdown' # only show button for markdown files | |
icon: 'social-markdown' | |
iconset: 'ion' | |
style: | |
color: "#E5A87E" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment