Last active
July 1, 2017 03:48
-
-
Save prosenjit-manna/cbf29cc73992cc4a3f59 to your computer and use it in GitHub Desktop.
Sublime Config
All settings file pah
packages/user/
This file contains 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
Show hidden characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Angular 2 Snippets (John Papa)", | |
"AngularJS", | |
"AutoFileName", | |
"Better Completion", | |
"Bootstrap 3 Snippets", | |
"Bootstrap 4 Autocomplete", | |
"Color Highlighter", | |
"CSS Extended Completions", | |
"CSS3", | |
"DocBlockr", | |
"EditorConfig", | |
"Emmet", | |
"FixMyJS", | |
"Glue", | |
"Google Spell Check", | |
"Handlebars", | |
"Ionic Snippets", | |
"JSCS-Formatter", | |
"JSHint", | |
"JSHint Gutter", | |
"jshintify", | |
"Minifier", | |
"Minify on Save", | |
"Package Control", | |
"Phpcs", | |
"ProjectManager", | |
"SCSS", | |
"SideBarEnhancements", | |
"SublimeCodeIntel", | |
"SublimeLinter", | |
"SublimeLinter-contrib-eslint", | |
"SublimeLinter-contrib-sass-lint", | |
"SublimeLinter-jshint", | |
"Theme - Dark Material", | |
"Theme - Spacegray", | |
"TypeScript", | |
"WordPress" | |
] | |
} |
This file contains 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
{ | |
"color_scheme": "Packages/User/SublimeLinter/base16-ocean.dark (SL).tmTheme", | |
"font_size": 13, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"theme": "Material-Theme-Darker.sublime-theme", | |
"tab_size": 2, | |
"word_wrap": true | |
} |
This file contains 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
{ | |
// -------------------- | |
// sublime-better-completions-Package (sbc package) | |
// -------------------- | |
// API files is contains the *keyword* such as `html`, `jquery`, `myglossary` with lowercase as filename `sbc-api-${filename}.sublime-settings` place in `/packages/User/` (your own) or `/packages/${this-package}/sublime-completions/` (package build-in). | |
// After you enable, disable or added new your own completions, you might need restart your Sublime Text Editor. | |
// | |
// Your own setting file `sbc-setting.sublime-settings` need to place in `/packages/User/` and contains all your api setting property that you want to enable. | |
// | |
// -------------------- | |
// APIs Setup | |
// -------------------- | |
// `true` means enable it. | |
// `false` means disable it. | |
"completion_active_list": { | |
// build-in completions | |
"css-properties": true, | |
"gruntjs-plugins": true, | |
"html": true, | |
"lodash": true, | |
"javascript": true, | |
"jquery": true, | |
"jquery-sq": true, // Single Quote | |
"php": true, | |
"phpci": true, | |
"sql": true, | |
"twitter-bootstrap": true, | |
"twitter-bootstrap-less-variables": true, | |
"twitter-bootstrap3": true, | |
"underscorejs": true, | |
// Your own completions? | |
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-my-angularjs.sublime-settings | |
"my-angularjs": true, | |
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-my-glossary.sublime-settings | |
"my-glossary": true, | |
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-my-html.sublime-settings | |
"my-html": false, | |
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-my-javascript.sublime-settings | |
"my-javascript": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment