Last active
October 2, 2017 20:29
-
-
Save tesseslol/2bb83222d80e7358135789749e63c76e to your computer and use it in GitHub Desktop.
automatic update by http://atom.io/packages/sync-settings
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
| # git plus command | |
| atom.packages.onDidActivateInitialPackages (p) -> | |
| if gitPlus = atom.packages.getActivePackage('git-plus')?.mainModule.provideService() | |
| gitPlus.registerCommand 'atom-text-editor', 'Git Plus:Tag-Create-1+-major-version', -> | |
| gitPlus.getRepo() | |
| .then (repo) -> | |
| gitPlus.run(repo, 'describe --tags') | |
| .then (tag) -> | |
| [major, minor, patch] = tag.split('.') | |
| newMajorVersion = 1 + parseInt(major) | |
| gitPlus.run(repo, "tag -a #{newMajorVersion}.#{minor}.#{patch}"); | |
| gitPlus.registerCommand 'atom-text-editor', 'Git Plus:Tag-Create-1+-minor-version', -> | |
| gitPlus.getRepo() | |
| .then (repo) -> | |
| gitPlus.run(repo, 'describe --tags') | |
| .then (tag) -> | |
| [major, minor, patch] = tag.split('.') | |
| newMinorVersion = 1 + parseInt(minor) | |
| gitPlus.run(repo, "tag -a #{major}.#{newMinorVersion}.#{patch}"); | |
| gitPlus.registerCommand 'atom-text-editor', 'Git Plus:Tag-Create-1+-patch-version', -> | |
| gitPlus.getRepo() | |
| .then (repo) -> | |
| gitPlus.run(repo, 'describe --tags') | |
| .then (tag) -> | |
| [major, minor, patch] = tag.split('.') | |
| newPathVersion = 1 + parseInt(patch) | |
| gitPlus.run(repo, "tag -a #{major}.#{minor}.#{newPathVersion}"); |
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
| # Your keymap | |
| # | |
| # Default keyword: | |
| # | |
| # addProjectFolder: ctrl + shift + A | |
| # newApplication: ctrl + a | |
| # openFile: ctrl + o | |
| # openFolder: ctrl + shift + o | |
| # openSetting: ctrl + , | |
| # autocomplete-plus-activate: ctrl + space | |
| # tree-view-toggle: ctrl + \ | |
| # commandPalette: ctrl + p | |
| # gotoline: ctrl + g | |
| # gotolineProject: ctrl + shift + g | |
| # symbols: ctrl + r | |
| # project-symbols: ctrl + shift + r | |
| # find: ctrl + shift + f | |
| # project-find: ctrl + shift + f | |
| # devTools: ctrl + shift + I | |
| # delete-word: ctrl + delete | |
| # delete-line: ctrl + shift + K | |
| # select-line: ctrl + l | |
| # duplicate-lines: ctrl + shift + D | |
| # split-panel-[direction]: ctrl + K + [direction] | |
| # move-to-tab-x: alt-[numeber] | |
| # show-recentely-next-user-tab: ctrl + tab | |
| # show-recentely-previus-user-tab: ctrl + shift + tab | |
| # increment-font-size: ctrl + | |
| # decrement-font-size: ctrl - | |
| # join-lines: ctrl + j | |
| # with numlock active: | |
| # next-panel: ctrl + pageUp | |
| # prev-panel: ctrl + pageDown | |
| 'atom-workspace atom-text-editor': | |
| # Unset editor keybindings (conflict with multi-cursor-plus) | |
| 'alt-left': 'unset!' | |
| 'alt-right': 'unset!' | |
| 'alt-shift-left': 'unset!' | |
| 'alt-shift-right': 'unset!' | |
| 'atom-workspace atom-text-editor:not([mini])': | |
| # Unset editor keybindings (conflict with multi-cursor-plus) | |
| 'alt-shift-up': 'unset!' | |
| 'alt-shift-down': 'unset!' | |
| 'ctrl-shift-up': 'cursor-history:next' | |
| 'ctrl-shift-down': 'cursor-history:prev' | |
| 'f1': 'hydrogen:run' | |
| 'f2': 'pane:show-previous-item' | |
| 'f3': 'pane:show-next-item' | |
| "f4": "hey-pane:toggle-follow-mode" | |
| 'atom-workspace': | |
| # Key bindings for multi-cursor-plus | |
| 'alt-x': 'multi-cursor-plus:mark' | |
| 'alt-up': 'multi-cursor-plus:move-up' | |
| 'alt-down': 'multi-cursor-plus:move-down' | |
| 'alt-left': 'multi-cursor-plus:move-left' | |
| 'alt-right': 'multi-cursor-plus:move-right' | |
| 'ctrl-alt-left': 'multi-cursor-plus:move-to-beginning-of-word' | |
| 'ctrl-alt-right': 'multi-cursor-plus:move-to-end-of-word' | |
| 'alt-shift-up': 'multi-cursor-plus:select-up' | |
| 'alt-shift-down': 'multi-cursor-plus:select-down' | |
| 'alt-shift-left': 'multi-cursor-plus:select-left' | |
| 'alt-shift-right': 'multi-cursor-plus:select-right' | |
| 'ctrl-alt-shift-left': 'multi-cursor-plus:select-to-beginning-of-word' | |
| 'ctrl-alt-shift-right': 'multi-cursor-plus:select-to-end-of-word' | |
| 'alt-k': 'multi-cursor-plus:move-up' | |
| 'alt-j': 'multi-cursor-plus:move-down' | |
| 'alt-h': 'multi-cursor-plus:move-left' | |
| 'alt-l': 'multi-cursor-plus:move-right' | |
| # tomatotimer | |
| "alt-ctrl-t": "tomatimer:start" | |
| "alt-ctrl-y": "tomatimer:pause-or-resume" | |
| "alt-ctrl-r": "tomatimer:reset" |
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
| [ | |
| { | |
| "name": "Sublime-Style-Column-Selection", | |
| "version": "1.7.4" | |
| }, | |
| { | |
| "name": "about", | |
| "version": "1.7.6" | |
| }, | |
| { | |
| "name": "angular-2-typeScript-snippets", | |
| "version": "0.7.0" | |
| }, | |
| { | |
| "name": "angularjs", | |
| "version": "0.4.0" | |
| }, | |
| { | |
| "name": "archive-view", | |
| "version": "0.63.3" | |
| }, | |
| { | |
| "name": "atom-alignment", | |
| "version": "0.13.0" | |
| }, | |
| { | |
| "name": "atom-autocomplete-php", | |
| "version": "0.22.2" | |
| }, | |
| { | |
| "name": "atom-beautify", | |
| "version": "0.29.17" | |
| }, | |
| { | |
| "name": "atom-clock", | |
| "version": "0.1.15" | |
| }, | |
| { | |
| "name": "atom-dark-syntax", | |
| "version": "0.28.0", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "atom-dark-ui", | |
| "version": "0.53.0", | |
| "theme": "ui" | |
| }, | |
| { | |
| "name": "atom-light-syntax", | |
| "version": "0.29.0", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "atom-light-ui", | |
| "version": "0.46.0", | |
| "theme": "ui" | |
| }, | |
| { | |
| "name": "atom-pair", | |
| "version": "2.0.13" | |
| }, | |
| { | |
| "name": "atom-ternjs", | |
| "version": "0.18.3" | |
| }, | |
| { | |
| "name": "atom-typescript", | |
| "version": "11.0.9" | |
| }, | |
| { | |
| "name": "auto-fold", | |
| "version": "0.4.0" | |
| }, | |
| { | |
| "name": "autoclose-html", | |
| "version": "0.23.0" | |
| }, | |
| { | |
| "name": "autocomplete-atom-api", | |
| "version": "0.10.2" | |
| }, | |
| { | |
| "name": "autocomplete-css", | |
| "version": "0.17.2" | |
| }, | |
| { | |
| "name": "autocomplete-html", | |
| "version": "0.8.0" | |
| }, | |
| { | |
| "name": "autocomplete-json", | |
| "version": "5.5.0" | |
| }, | |
| { | |
| "name": "autocomplete-modules", | |
| "version": "1.7.2" | |
| }, | |
| { | |
| "name": "autocomplete-paths", | |
| "version": "1.0.5" | |
| }, | |
| { | |
| "name": "autocomplete-plus", | |
| "version": "2.35.7" | |
| }, | |
| { | |
| "name": "autocomplete-python", | |
| "version": "1.8.62" | |
| }, | |
| { | |
| "name": "autocomplete-snippets", | |
| "version": "1.11.0" | |
| }, | |
| { | |
| "name": "autoflow", | |
| "version": "0.29.0" | |
| }, | |
| { | |
| "name": "autosave", | |
| "version": "0.24.3" | |
| }, | |
| { | |
| "name": "autoupdate-packages", | |
| "version": "1.3.1" | |
| }, | |
| { | |
| "name": "background-tips", | |
| "version": "0.27.1" | |
| }, | |
| { | |
| "name": "base16-tomorrow-dark-theme", | |
| "version": "1.5.0", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "base16-tomorrow-light-theme", | |
| "version": "1.5.0", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "bezier-curve-editor", | |
| "version": "0.7.2" | |
| }, | |
| { | |
| "name": "block-travel", | |
| "version": "1.0.5" | |
| }, | |
| { | |
| "name": "bookmarks", | |
| "version": "0.44.4" | |
| }, | |
| { | |
| "name": "bracket-matcher", | |
| "version": "0.87.3" | |
| }, | |
| { | |
| "name": "browser-plus", | |
| "version": "0.0.98" | |
| }, | |
| { | |
| "name": "busy", | |
| "version": "0.7.0" | |
| }, | |
| { | |
| "name": "busy-signal", | |
| "version": "1.4.3" | |
| }, | |
| { | |
| "name": "caniuse", | |
| "version": "0.9.2" | |
| }, | |
| { | |
| "name": "change-case", | |
| "version": "0.6.5" | |
| }, | |
| { | |
| "name": "clipboard-plus", | |
| "version": "0.5.1" | |
| }, | |
| { | |
| "name": "command-palette", | |
| "version": "0.40.4" | |
| }, | |
| { | |
| "name": "css-snippets", | |
| "version": "1.1.0" | |
| }, | |
| { | |
| "name": "css-spy", | |
| "version": "0.6.0" | |
| }, | |
| { | |
| "name": "ctags-status", | |
| "version": "1.3.7" | |
| }, | |
| { | |
| "name": "cursor-history", | |
| "version": "0.12.0" | |
| }, | |
| { | |
| "name": "dalek", | |
| "version": "0.2.1" | |
| }, | |
| { | |
| "name": "dash", | |
| "version": "1.7.1" | |
| }, | |
| { | |
| "name": "declarations", | |
| "version": "1.1.3" | |
| }, | |
| { | |
| "name": "deprecation-cop", | |
| "version": "0.56.7" | |
| }, | |
| { | |
| "name": "dev-live-reload", | |
| "version": "0.47.1" | |
| }, | |
| { | |
| "name": "docblockr", | |
| "version": "0.11.0" | |
| }, | |
| { | |
| "name": "double-tag", | |
| "version": "0.9.0" | |
| }, | |
| { | |
| "name": "drag-relative-path", | |
| "version": "1.1.3" | |
| }, | |
| { | |
| "name": "editorconfig", | |
| "version": "2.2.2" | |
| }, | |
| { | |
| "name": "emmet", | |
| "version": "2.4.3" | |
| }, | |
| { | |
| "name": "encoding-selector", | |
| "version": "0.23.4" | |
| }, | |
| { | |
| "name": "ex-mode", | |
| "version": "0.18.0" | |
| }, | |
| { | |
| "name": "exception-reporting", | |
| "version": "0.41.4" | |
| }, | |
| { | |
| "name": "expose", | |
| "version": "0.14.0" | |
| }, | |
| { | |
| "name": "file-icons", | |
| "version": "2.1.1" | |
| }, | |
| { | |
| "name": "find-and-replace", | |
| "version": "0.209.5" | |
| }, | |
| { | |
| "name": "flex-tool-bar", | |
| "version": "0.12.0" | |
| }, | |
| { | |
| "name": "fold-lines", | |
| "version": "0.2.2" | |
| }, | |
| { | |
| "name": "fuzzy-finder", | |
| "version": "1.5.8" | |
| }, | |
| { | |
| "name": "git-diff", | |
| "version": "1.3.6" | |
| }, | |
| { | |
| "name": "git-diff-details", | |
| "version": "1.4.0" | |
| }, | |
| { | |
| "name": "git-log", | |
| "version": "0.4.1" | |
| }, | |
| { | |
| "name": "git-plus", | |
| "version": "7.9.3" | |
| }, | |
| { | |
| "name": "git-time-machine", | |
| "version": "1.5.9" | |
| }, | |
| { | |
| "name": "github", | |
| "version": "0.4.0" | |
| }, | |
| { | |
| "name": "gitignore-snippets", | |
| "version": "0.2.5" | |
| }, | |
| { | |
| "name": "glowing-cursor", | |
| "version": "0.1.2" | |
| }, | |
| { | |
| "name": "go-to-line", | |
| "version": "0.32.1" | |
| }, | |
| { | |
| "name": "goto-definition", | |
| "version": "1.3.4" | |
| }, | |
| { | |
| "name": "grammar-selector", | |
| "version": "0.49.5" | |
| }, | |
| { | |
| "name": "hey-pane", | |
| "version": "1.0.0" | |
| }, | |
| { | |
| "name": "highlight-selected", | |
| "version": "0.13.1" | |
| }, | |
| { | |
| "name": "hyperclick", | |
| "version": "0.1.5" | |
| }, | |
| { | |
| "name": "image-view", | |
| "version": "0.62.3" | |
| }, | |
| { | |
| "name": "incompatible-packages", | |
| "version": "0.27.3" | |
| }, | |
| { | |
| "name": "indent-guide-improved", | |
| "version": "1.4.13" | |
| }, | |
| { | |
| "name": "intentions", | |
| "version": "1.1.5" | |
| }, | |
| { | |
| "name": "javascript-snippets", | |
| "version": "1.2.1" | |
| }, | |
| { | |
| "name": "jshint-snippets", | |
| "version": "0.2.2" | |
| }, | |
| { | |
| "name": "jumpy", | |
| "version": "3.1.3" | |
| }, | |
| { | |
| "name": "keybinding-resolver", | |
| "version": "0.38.0" | |
| }, | |
| { | |
| "name": "kite", | |
| "version": "0.20.1" | |
| }, | |
| { | |
| "name": "language-babel", | |
| "version": "2.75.0" | |
| }, | |
| { | |
| "name": "language-c", | |
| "version": "0.58.1" | |
| }, | |
| { | |
| "name": "language-clojure", | |
| "version": "0.22.4" | |
| }, | |
| { | |
| "name": "language-coffee-script", | |
| "version": "0.48.9" | |
| }, | |
| { | |
| "name": "language-csharp", | |
| "version": "0.14.2" | |
| }, | |
| { | |
| "name": "language-css", | |
| "version": "0.42.4" | |
| }, | |
| { | |
| "name": "language-generic-config", | |
| "version": "1.4.0" | |
| }, | |
| { | |
| "name": "language-gfm", | |
| "version": "0.90.0" | |
| }, | |
| { | |
| "name": "language-git", | |
| "version": "0.19.1" | |
| }, | |
| { | |
| "name": "language-gitignore", | |
| "version": "0.3.0" | |
| }, | |
| { | |
| "name": "language-go", | |
| "version": "0.44.2" | |
| }, | |
| { | |
| "name": "language-html", | |
| "version": "0.47.3" | |
| }, | |
| { | |
| "name": "language-hyperlink", | |
| "version": "0.16.2" | |
| }, | |
| { | |
| "name": "language-ini", | |
| "version": "1.19.0" | |
| }, | |
| { | |
| "name": "language-java", | |
| "version": "0.27.2" | |
| }, | |
| { | |
| "name": "language-javascript", | |
| "version": "0.127.1" | |
| }, | |
| { | |
| "name": "language-javascript-jsx", | |
| "version": "0.3.7" | |
| }, | |
| { | |
| "name": "language-json", | |
| "version": "0.19.1" | |
| }, | |
| { | |
| "name": "language-less", | |
| "version": "0.33.0" | |
| }, | |
| { | |
| "name": "language-make", | |
| "version": "0.22.3" | |
| }, | |
| { | |
| "name": "language-markdown", | |
| "version": "0.25.1" | |
| }, | |
| { | |
| "name": "language-mustache", | |
| "version": "0.14.1" | |
| }, | |
| { | |
| "name": "language-objective-c", | |
| "version": "0.15.1" | |
| }, | |
| { | |
| "name": "language-perl", | |
| "version": "0.37.0" | |
| }, | |
| { | |
| "name": "language-php", | |
| "version": "0.42.0" | |
| }, | |
| { | |
| "name": "language-property-list", | |
| "version": "0.9.1" | |
| }, | |
| { | |
| "name": "language-python", | |
| "version": "0.45.4" | |
| }, | |
| { | |
| "name": "language-ruby", | |
| "version": "0.71.3" | |
| }, | |
| { | |
| "name": "language-ruby-on-rails", | |
| "version": "0.25.2" | |
| }, | |
| { | |
| "name": "language-sass", | |
| "version": "0.61.0" | |
| }, | |
| { | |
| "name": "language-shellscript", | |
| "version": "0.25.2" | |
| }, | |
| { | |
| "name": "language-source", | |
| "version": "0.9.0" | |
| }, | |
| { | |
| "name": "language-sql", | |
| "version": "0.25.8" | |
| }, | |
| { | |
| "name": "language-text", | |
| "version": "0.7.3" | |
| }, | |
| { | |
| "name": "language-todo", | |
| "version": "0.29.2" | |
| }, | |
| { | |
| "name": "language-toml", | |
| "version": "0.18.1" | |
| }, | |
| { | |
| "name": "language-xml", | |
| "version": "0.35.2" | |
| }, | |
| { | |
| "name": "language-yaml", | |
| "version": "0.30.1" | |
| }, | |
| { | |
| "name": "line-diff-details", | |
| "version": "1.9.0" | |
| }, | |
| { | |
| "name": "line-ending-selector", | |
| "version": "0.7.3" | |
| }, | |
| { | |
| "name": "link", | |
| "version": "0.31.3" | |
| }, | |
| { | |
| "name": "linter", | |
| "version": "2.2.0" | |
| }, | |
| { | |
| "name": "linter-bootlint", | |
| "version": "1.1.0" | |
| }, | |
| { | |
| "name": "linter-csslint", | |
| "version": "2.0.0" | |
| }, | |
| { | |
| "name": "linter-eslint", | |
| "version": "8.3.2" | |
| }, | |
| { | |
| "name": "linter-jshint", | |
| "version": "3.1.6" | |
| }, | |
| { | |
| "name": "linter-jsonlint", | |
| "version": "1.3.0" | |
| }, | |
| { | |
| "name": "linter-markdown", | |
| "version": "3.1.0" | |
| }, | |
| { | |
| "name": "linter-php", | |
| "version": "1.5.1" | |
| }, | |
| { | |
| "name": "linter-pycodestyle", | |
| "version": "2.1.3" | |
| }, | |
| { | |
| "name": "linter-pylint", | |
| "version": "2.1.0" | |
| }, | |
| { | |
| "name": "linter-sass-lint", | |
| "version": "1.8.0" | |
| }, | |
| { | |
| "name": "linter-scss-lint", | |
| "version": "3.1.1" | |
| }, | |
| { | |
| "name": "linter-tidy", | |
| "version": "2.3.1" | |
| }, | |
| { | |
| "name": "linter-tslint", | |
| "version": "1.8.1" | |
| }, | |
| { | |
| "name": "linter-ui-default", | |
| "version": "1.6.10" | |
| }, | |
| { | |
| "name": "linter-write-good", | |
| "version": "0.9.0" | |
| }, | |
| { | |
| "name": "livestyle-atom", | |
| "version": "0.2.10" | |
| }, | |
| { | |
| "name": "local-history", | |
| "version": "4.3.0" | |
| }, | |
| { | |
| "name": "markdown-preview", | |
| "version": "0.159.13" | |
| }, | |
| { | |
| "name": "markdown-preview-plus", | |
| "version": "2.4.10" | |
| }, | |
| { | |
| "name": "markdown-table-editor", | |
| "version": "0.6.4" | |
| }, | |
| { | |
| "name": "markdown-writer", | |
| "version": "2.7.2" | |
| }, | |
| { | |
| "name": "merge-conflicts", | |
| "version": "1.4.5" | |
| }, | |
| { | |
| "name": "metrics", | |
| "version": "1.2.6" | |
| }, | |
| { | |
| "name": "minimap", | |
| "version": "4.29.7" | |
| }, | |
| { | |
| "name": "minimap-bookmarks", | |
| "version": "0.4.2" | |
| }, | |
| { | |
| "name": "minimap-cursorline", | |
| "version": "0.2.0" | |
| }, | |
| { | |
| "name": "minimap-find-and-replace", | |
| "version": "4.5.2" | |
| }, | |
| { | |
| "name": "minimap-git-diff", | |
| "version": "4.3.1" | |
| }, | |
| { | |
| "name": "minimap-highlight-selected", | |
| "version": "4.6.1" | |
| }, | |
| { | |
| "name": "minimap-linter", | |
| "version": "2.1.1" | |
| }, | |
| { | |
| "name": "minimap-selection", | |
| "version": "4.5.0" | |
| }, | |
| { | |
| "name": "minimap-split-diff", | |
| "version": "0.3.7" | |
| }, | |
| { | |
| "name": "monokai", | |
| "version": "0.24.0", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "multi-cursor-plus", | |
| "version": "1.2.0" | |
| }, | |
| { | |
| "name": "notifications", | |
| "version": "0.69.0" | |
| }, | |
| { | |
| "name": "one-dark-syntax", | |
| "version": "1.8.0", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "one-dark-ui", | |
| "version": "1.10.6", | |
| "theme": "ui" | |
| }, | |
| { | |
| "name": "one-light-syntax", | |
| "version": "1.8.0", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "one-light-ui", | |
| "version": "1.10.6", | |
| "theme": "ui" | |
| }, | |
| { | |
| "name": "open-on-github", | |
| "version": "1.2.1" | |
| }, | |
| { | |
| "name": "package-generator", | |
| "version": "1.1.1" | |
| }, | |
| { | |
| "name": "pigments", | |
| "version": "0.40.2" | |
| }, | |
| { | |
| "name": "platformio-ide-terminal", | |
| "version": "2.7.0" | |
| }, | |
| { | |
| "name": "preview", | |
| "version": "0.17.0" | |
| }, | |
| { | |
| "name": "project-manager", | |
| "version": "3.3.5" | |
| }, | |
| { | |
| "name": "project-sidebar", | |
| "version": "1.3.0" | |
| }, | |
| { | |
| "name": "python-tools", | |
| "version": "0.6.9" | |
| }, | |
| { | |
| "name": "qolor", | |
| "version": "0.4.1" | |
| }, | |
| { | |
| "name": "quick-highlight", | |
| "version": "0.10.0" | |
| }, | |
| { | |
| "name": "regex-railroad-diagram", | |
| "version": "0.19.4" | |
| }, | |
| { | |
| "name": "remember-file-positions", | |
| "version": "0.2.3" | |
| }, | |
| { | |
| "name": "scroll-through-time", | |
| "version": "0.2.0" | |
| }, | |
| { | |
| "name": "set-syntax", | |
| "version": "0.4.0" | |
| }, | |
| { | |
| "name": "seti-ui", | |
| "version": "1.9.0", | |
| "theme": "ui" | |
| }, | |
| { | |
| "name": "settings-view", | |
| "version": "0.251.5" | |
| }, | |
| { | |
| "name": "snippets", | |
| "version": "1.1.4" | |
| }, | |
| { | |
| "name": "solarized-dark-syntax", | |
| "version": "1.1.2", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "solarized-light-syntax", | |
| "version": "1.1.2", | |
| "theme": "syntax" | |
| }, | |
| { | |
| "name": "sort-lines", | |
| "version": "0.15.0" | |
| }, | |
| { | |
| "name": "spell-check", | |
| "version": "0.72.1" | |
| }, | |
| { | |
| "name": "split-diff", | |
| "version": "1.5.1" | |
| }, | |
| { | |
| "name": "status-bar", | |
| "version": "1.8.11" | |
| }, | |
| { | |
| "name": "statusbar-battery", | |
| "version": "0.11.3" | |
| }, | |
| { | |
| "name": "styleguide", | |
| "version": "0.49.7" | |
| }, | |
| { | |
| "name": "svg-preview", | |
| "version": "0.11.0" | |
| }, | |
| { | |
| "name": "symbol-gen", | |
| "version": "1.3.1" | |
| }, | |
| { | |
| "name": "symbols-tree-view", | |
| "version": "0.14.0" | |
| }, | |
| { | |
| "name": "symbols-view", | |
| "version": "0.117.0" | |
| }, | |
| { | |
| "name": "sync-settings", | |
| "version": "0.8.3" | |
| }, | |
| { | |
| "name": "tabs", | |
| "version": "0.107.1" | |
| }, | |
| { | |
| "name": "tabs-to-spaces", | |
| "version": "1.0.3" | |
| }, | |
| { | |
| "name": "timecop", | |
| "version": "0.36.0" | |
| }, | |
| { | |
| "name": "todo-show", | |
| "version": "2.1.0" | |
| }, | |
| { | |
| "name": "toggle-quotes", | |
| "version": "1.0.1" | |
| }, | |
| { | |
| "name": "toggler", | |
| "version": "0.3.0" | |
| }, | |
| { | |
| "name": "tool-bar", | |
| "version": "1.1.0" | |
| }, | |
| { | |
| "name": "tree-view", | |
| "version": "0.217.7" | |
| }, | |
| { | |
| "name": "tree-view-git-branch", | |
| "version": "0.1.2" | |
| }, | |
| { | |
| "name": "tree-view-git-status", | |
| "version": "1.4.0" | |
| }, | |
| { | |
| "name": "update-package-dependencies", | |
| "version": "0.12.0" | |
| }, | |
| { | |
| "name": "vim-mode-plus", | |
| "version": "1.8.0" | |
| }, | |
| { | |
| "name": "vim-mode-plus-ex-mode", | |
| "version": "0.9.1" | |
| }, | |
| { | |
| "name": "welcome", | |
| "version": "0.36.5" | |
| }, | |
| { | |
| "name": "whitespace", | |
| "version": "0.37.2" | |
| }, | |
| { | |
| "name": "windows-context-menu", | |
| "version": "0.3.1" | |
| }, | |
| { | |
| "name": "wordcount", | |
| "version": "2.10.4" | |
| }, | |
| { | |
| "name": "wrap-guide", | |
| "version": "0.40.2" | |
| }, | |
| { | |
| "name": "zentabs", | |
| "version": "0.8.8" | |
| } | |
| ] |
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
| { | |
| "Hydrogen": { | |
| "kernelNotifications": true | |
| }, | |
| "Sublime-Style-Column-Selection": { | |
| "selectKeyTrigger": "Shift" | |
| }, | |
| "amnesia-io": {}, | |
| "api-docs": { | |
| "angular~2_typescript": true, | |
| "bootstrap~4": true, | |
| "browser_support_tables": true, | |
| "coffeescript": true, | |
| "git": true, | |
| "jquery": true, | |
| "laravel~5": { | |
| "4": true | |
| }, | |
| "less": true, | |
| "markdown": true, | |
| "modernizr": true, | |
| "moment": true, | |
| "node~6_lts": true, | |
| "npm": true, | |
| "php": true, | |
| "python~2": { | |
| "7": true | |
| }, | |
| "python~3": { | |
| "6": true | |
| }, | |
| "react": true, | |
| "redux": true, | |
| "requirejs": true, | |
| "sass": true, | |
| "socketio": true, | |
| "svg": true, | |
| "symfony~3": {}, | |
| "typescript": true, | |
| "webpack~1": true, | |
| "webpack~2": true | |
| }, | |
| "atom-autocomplete-php": { | |
| "binComposer": "composer" | |
| }, | |
| "atom-beautify": { | |
| "general": { | |
| "_analyticsUserId": "9702ed47-e93f-4bb8-b952-6fb012a1045e" | |
| } | |
| }, | |
| "atom-gmail-checker": { | |
| "checkQuery": "in:inbox is:unread category:primary" | |
| }, | |
| "atom-metaweather": { | |
| "location": 725746, | |
| "locationName": "Venice", | |
| "updateTime": 60 | |
| }, | |
| "atom-package-deps": { | |
| "ignored": [] | |
| }, | |
| "atom-pair": {}, | |
| "autoupdate-packages": { | |
| "lastUpdateTimestamp": 1506963543038 | |
| }, | |
| "battery-status": { | |
| "showPercentage": false | |
| }, | |
| "browser-plus": { | |
| "openInSameWindow": [ | |
| "127.0.0.1", | |
| "www.google.com", | |
| "www.stackoverflow.com", | |
| "google.com", | |
| "stackoverflow.com" | |
| ] | |
| }, | |
| "build": { | |
| "buildOnSave": true | |
| }, | |
| "clean-context-menu": { | |
| "editorEditHistory": "submenu", | |
| "editorSplitPanes": "submenu", | |
| "tabsCloseThings": "hidden", | |
| "zOthers": { | |
| "hide": "toggle-qolor" | |
| } | |
| }, | |
| "console-log": { | |
| "noSelectionInsert": true | |
| }, | |
| "context-menu-manager": { | |
| "extraStrokes": [], | |
| "hidden": [ | |
| "atom-workspace|||application:inspect", | |
| "atom-workspace atom-text-editor:not(.mini)|||atom-beautify:beautify-editor", | |
| ".tree-view .file > .name|||atom-beautify:beautify-file", | |
| "atom-text-editor|||browser-plus:open", | |
| ".tab.pending-tab|||tabs:keep-pending-tab", | |
| ".tab.texteditor|||tabs:open-in-new-window", | |
| "atom-text-editor:not([mini])|||encoding-selector:show", | |
| ".tree-view|||tree-view-git-branch:reload", | |
| ".line-number|||script:run-by-line-number", | |
| ".tree-view .file .name[data-name$=\\.ron]|||markdown-preview-plus:preview-file", | |
| ".tree-view .file .name[data-name$=\\.txt]|||markdown-preview-plus:preview-file", | |
| ".tree-view .file .name[data-name$=\\.mkdown]|||markdown-preview-plus:preview-file", | |
| ".tree-view .file .name[data-name$=\\.mkd]|||markdown-preview-plus:preview-file", | |
| ".tree-view .file .name[data-name$=\\.mdown]|||markdown-preview-plus:preview-file", | |
| ".tree-view .file .name[data-name$=\\.markdown]|||markdown-preview-plus:preview-file", | |
| "atom-text-editor:not(.mini)|||git-plus:add", | |
| "atom-workspace atom-text-editor:not(.mini)|||atom-beautify:help-debug-editor", | |
| "atom-pane[data-active-item-path] .tab.active|||tree-view:reveal-active-file", | |
| ".tree-view.full-menu .project-root > .header|||tree-view:open-in-new-window", | |
| ".tab|||tabs:close-tab" | |
| ] | |
| }, | |
| "core": { | |
| "autoHideMenuBar": true, | |
| "customFileTypes": { | |
| "source.ini": [ | |
| ".buckconfig", | |
| ".flowconfig", | |
| ".hgrc" | |
| ], | |
| "source.json": [ | |
| ".arcconfig", | |
| "BUCK.autodeps" | |
| ], | |
| "source.python": [ | |
| "BUCK" | |
| ] | |
| }, | |
| "disabledPackages": [ | |
| "atom-pair", | |
| "minimap-autohide", | |
| "vim-mode-plus-ex-mode", | |
| "vim-mode-plus", | |
| "auto-fold", | |
| "autocomplete-json", | |
| "split-diff", | |
| "python-tools", | |
| "project-sidebar", | |
| "project-manager", | |
| "preview", | |
| "declarations", | |
| "language-generic-config", | |
| "jshint-snippets", | |
| "ex-mode", | |
| "symbol-gen", | |
| "multi-cursor-plus", | |
| "goto-definition", | |
| "toggler", | |
| "remember-file-positions", | |
| "sort-lines", | |
| "qolor" | |
| ], | |
| "packagesWithKeymapsDisabled": [ | |
| "hey-pane", | |
| "autocomplete-java", | |
| "markdown-preview-plus", | |
| "todo-show" | |
| ], | |
| "telemetryConsent": "limited" | |
| }, | |
| "cursor-history": { | |
| "debug": true | |
| }, | |
| "disable-keybindings": { | |
| "allCommunityPackages": true, | |
| "exceptBundledPackages": [ | |
| "tree-view", | |
| "keybinding-resolver", | |
| "go-to-line", | |
| "find-and-replace", | |
| "fuzzy-finder", | |
| "bookmarks", | |
| "symbols-view", | |
| "command-palette", | |
| "go-to-line" | |
| ], | |
| "exceptCommunityPackages": [ | |
| "docblockr", | |
| "project-manager", | |
| "atomatigit", | |
| "block-travel", | |
| "git-plus", | |
| "jumpy", | |
| "project-sidebar", | |
| "browser-plus", | |
| "symbols-tree-view" | |
| ] | |
| }, | |
| "editor": { | |
| "fontSize": 16, | |
| "softWrap": true | |
| }, | |
| "exception-reporting": { | |
| "userId": "a912f8e8-8926-789f-bfbb-76a3c0f9eca5" | |
| }, | |
| "expand-region": {}, | |
| "git-plus": { | |
| "commits": {}, | |
| "experimental": { | |
| "customCommands": true, | |
| "diffBranches": true, | |
| "useSplitDiff": true | |
| } | |
| }, | |
| "google-translate-modal": { | |
| "lang": "italy" | |
| }, | |
| "hey-pane": {}, | |
| "highlight-line": { | |
| "enableBackgroundColor": false | |
| }, | |
| "imdone-atom": { | |
| "todaysJournal": { | |
| "dateFormat": "DD-MM-YYYY", | |
| "monthFormat": "MM-YYYY" | |
| } | |
| }, | |
| "indentation-indicator": {}, | |
| "keymap-disabler": {}, | |
| "kite": { | |
| "showKiteTourOnStatup": false, | |
| "sidebarWidth": 373 | |
| }, | |
| "linter": { | |
| "lintOnChange": false | |
| }, | |
| "linter-jshint": { | |
| "lintInlineJavaScript": true | |
| }, | |
| "linter-ui-default": { | |
| "panelHeight": 353 | |
| }, | |
| "linter-write-good": { | |
| "severityLevel": "Info" | |
| }, | |
| "local-history": { | |
| "difftoolCommand": "git diff --color \"{current-file}\" \"{revision-file}\" | diff-so-fancy" | |
| }, | |
| "markdown-preview": { | |
| "useGitHubStyle": true | |
| }, | |
| "markdown-table-editor": {}, | |
| "minimap": { | |
| "adjustAbsoluteModeHeight": true, | |
| "plugins": { | |
| "bookmarks": false, | |
| "bookmarksDecorationsZIndex": 0, | |
| "cursorline": true, | |
| "cursorlineDecorationsZIndex": 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": true, | |
| "minimap-autohideDecorationsZIndex": 0, | |
| "minimap-autohider": true, | |
| "minimap-autohiderDecorationsZIndex": 0, | |
| "pigments": true, | |
| "pigmentsDecorationsZIndex": 0, | |
| "selection": true, | |
| "selectionDecorationsZIndex": 0, | |
| "split-diff": true, | |
| "split-diffDecorationsZIndex": 0 | |
| } | |
| }, | |
| "minimap-autohider": { | |
| "TimeToHide": 4000, | |
| "TransitionDuration": 250 | |
| }, | |
| "motepair": { | |
| "secureConnection": true | |
| }, | |
| "navigate": { | |
| "f1": "http://devdocs.io/#q=&searchterm", | |
| "f10": "https://duckduckgo.com/?q=&searchterm", | |
| "f6": "http://www.bing.com/search?q=&searchterm" | |
| }, | |
| "nuclide": { | |
| "nuclide-code-format": { | |
| "formatOnSave": true | |
| }, | |
| "nuclide-ctags": { | |
| "disableWithHack": false | |
| }, | |
| "nuclide-diagnostics-ui": { | |
| "showDiagnosticTraces": true | |
| }, | |
| "nuclide-distraction-free-mode": { | |
| "hideToolBar": true | |
| }, | |
| "nuclide-file-tree": { | |
| "revealFileOnSwitch": true | |
| }, | |
| "nuclide-health": { | |
| "toolbarJewel": "CPU" | |
| }, | |
| "nuclide-hg-repository": { | |
| "enableDiffStats": true | |
| }, | |
| "nuclide-home": { | |
| "showHome": false | |
| }, | |
| "nuclide-python": { | |
| "includeOptionalArguments": true | |
| }, | |
| "nuclide-source-control-side-bar": { | |
| "createStacked": true | |
| }, | |
| "nuclide-working-sets": { | |
| "workingSets": [ | |
| { | |
| "name": "main", | |
| "active": true, | |
| "uris": [ | |
| "D:\\xampp\\htdocs\\Robot-Framework\\sikuli\\C2AI1P_201533729_P18_B_S-1024x0_WI4GFU.jpg", | |
| "D:\\xampp\\htdocs\\Robot-Framework\\sikuli\\floro.jpg", | |
| "D:\\xampp\\htdocs\\Robot-Framework\\sikuli\\get-function.py", | |
| "D:\\xampp\\htdocs\\Robot-Framework\\sikuli\\main.robot", | |
| "D:\\xampp\\htdocs\\Robot-Framework\\sikuli\\skuli.bat", | |
| "D:\\xampp\\htdocs\\Robot-Framework\\sikuli\\trasparenza.png" | |
| ] | |
| } | |
| ] | |
| }, | |
| "use": { | |
| "nuclide-adb-logcat": false, | |
| "nuclide-arcanist": false, | |
| "nuclide-atom-notifications": false, | |
| "nuclide-blame": false, | |
| "nuclide-blame-provider-hg": false, | |
| "nuclide-buck": false, | |
| "nuclide-buck-ios": false, | |
| "nuclide-console": false, | |
| "nuclide-context-view": false, | |
| "nuclide-debugger": false, | |
| "nuclide-debugger-iwdp": false, | |
| "nuclide-debugger-native": false, | |
| "nuclide-debugger-node": false, | |
| "nuclide-debugger-php": false, | |
| "nuclide-diagnostics-datatip-provider": false, | |
| "nuclide-diagnostics-store": false, | |
| "nuclide-diagnostics-ui": false, | |
| "nuclide-diff-view": false, | |
| "nuclide-distraction-free-mode": false, | |
| "nuclide-file-tree": false, | |
| "nuclide-flow": false, | |
| "nuclide-graphql": false, | |
| "nuclide-hack": false, | |
| "nuclide-health": false, | |
| "nuclide-hg-repository": false, | |
| "nuclide-hhvm": false, | |
| "nuclide-home": false, | |
| "nuclide-ios-simulator-logs": false, | |
| "nuclide-language-hack": false, | |
| "nuclide-language-reason": false, | |
| "nuclide-objc": false, | |
| "nuclide-ocaml": false, | |
| "nuclide-outline-view": false, | |
| "nuclide-react-inspector": false, | |
| "nuclide-react-native": false, | |
| "nuclide-settings": false, | |
| "nuclide-source-control-side-bar": false, | |
| "nuclide-swift": false, | |
| "nuclide-test-runner": false, | |
| "nuclide-type-hint": false, | |
| "nuclide-vcs-log": false, | |
| "nuclide-workspace-view-locations": false, | |
| "nuclide-workspace-views": false | |
| } | |
| }, | |
| "one-dark-ui": {}, | |
| "platformio-ide-terminal": { | |
| "core": {} | |
| }, | |
| "preview": { | |
| "_analyticsUserId": "08f2105f-d752-4d7e-bd3b-a76ec831fb34" | |
| }, | |
| "project-viewer": { | |
| "customWidth": 312, | |
| "disclaimer": { | |
| "v1011": false | |
| } | |
| }, | |
| "seti-ui": { | |
| "font": "Default Atom Font", | |
| "themeColor": "Orange" | |
| }, | |
| "slickwrap": { | |
| "maxRowLength": 100 | |
| }, | |
| "split-diff": { | |
| "diffWords": true, | |
| "ignoreWhitespace": true, | |
| "leftEditorColor": "red", | |
| "rightEditorColor": "green", | |
| "scrollSyncType": "Vertical + Horizontal" | |
| }, | |
| "symbols-tree-view": { | |
| "autoHide": true, | |
| "autoToggle": true, | |
| "collapsedByDefault": true, | |
| "zAutoHideTypes": "variable class object null boolean namespace " | |
| }, | |
| "sync-settings": {}, | |
| "terminal-plus": { | |
| "core": {} | |
| }, | |
| "todo-show": { | |
| "findTheseTodos": [ | |
| "TODO", | |
| "FIXME", | |
| "CHANGED", | |
| "XXX", | |
| "IDEA", | |
| "HACK", | |
| "NOTE", | |
| "REVIEW", | |
| "NB", | |
| "BUG", | |
| "QUESTION", | |
| "COMBAK", | |
| "TEMP", | |
| "DA SISTEMARE", | |
| "SISTEMARE", | |
| "OTTIMIZZARE" | |
| ], | |
| "ignoreThesePaths": [ | |
| "node_modules", | |
| "vendor", | |
| "bower_components", | |
| "dev", | |
| "doc" | |
| ], | |
| "sortAscending": false, | |
| "sortBy": "Path" | |
| }, | |
| "tool-bar": { | |
| "position": "Right" | |
| }, | |
| "tree-view": {}, | |
| "tree-view-breadcrumb": { | |
| "displayProjectRootName": true, | |
| "scrollToLastItem": false | |
| }, | |
| "vim-mode": { | |
| "useClipboardAsDefaultRegister": true | |
| }, | |
| "vim-mode-plus": { | |
| "startInInsertMode": true | |
| }, | |
| "wakatime": { | |
| "apikey": "Saved in your ~/.wakatime.cfg file" | |
| }, | |
| "wakatime-hidden": { | |
| "lastInit": 1488033857 | |
| }, | |
| "welcome": { | |
| "showOnStartup": false | |
| }, | |
| "which-key": { | |
| "isVisible": false, | |
| "keystrokesFormat": "long" | |
| }, | |
| "windows-context-menu": { | |
| "lastLaunchPath": "C:\\Users\\Tessari Davide\\AppData\\Local\\atom\\app-1.20.1\\atom.exe" | |
| }, | |
| "zentabs": { | |
| "neverCloseUnsaved": true | |
| } | |
| } |
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
| # 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' | |
| # | |
| # Each scope (e.g. '.source.coffee' above) can only be declared once. | |
| # | |
| # This file uses CoffeeScript Object Notation (CSON). | |
| # If you are unfamiliar with CSON, you can read more about it in the | |
| # Atom Flight Manual: | |
| # http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson |
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
| /* | |
| * Your Stylesheet | |
| * | |
| * This stylesheet is loaded when Atom starts up and is reloaded automatically | |
| * when it is changed and saved. | |
| * | |
| * Add your own CSS or Less to fully customize Atom. | |
| * If you are unfamiliar with Less, you can read more about it here: | |
| * http://lesscss.org | |
| */ | |
| /* | |
| * Examples | |
| * (To see them, uncomment and save) | |
| */ | |
| // style the background color of the tree view | |
| .tree-view { | |
| // background-color: whitesmoke; | |
| } | |
| // style the background and foreground colors on the atom-text-editor-element itself | |
| atom-text-editor { | |
| // color: white; | |
| // background-color: hsl(180, 24%, 12%); | |
| } | |
| // To style other content in the text editor's shadow DOM, use the ::shadow expression | |
| atom-text-editor::shadow .cursor { | |
| // border-color: red; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment