Skip to content

Instantly share code, notes, and snippets.

@dalisoft
Last active September 23, 2021 17:00
Show Gist options
  • Save dalisoft/53d864ba0cd20ccd405e8aa4d741ab85 to your computer and use it in GitHub Desktop.
Save dalisoft/53d864ba0cd20ccd405e8aa4d741ab85 to your computer and use it in GitHub Desktop.
Sublime Text 3 Sync Configurations
[
{
"keys": [
"enter"
],
"command": "commit_completion",
"context": [
{
"key": "auto_complete_visible"
},
]
},
{
"keys": [
"super+alt+enter"
],
"command": "lsp_symbol_definition",
"context": [
{
"key": "selector",
"operator": "equal",
"operand": true,
}
]
},
{
"keys": [
"super+shift+c"
],
"command": "lsp_format_document",
"context": [
{
"key": "selector",
"operator": "equal",
"operand": true
}
]
},
{
"args": {
"panel": "find",
"reverse": false
},
"command": "show_panel",
"keys": [
"super+f"
]
},
{
"args": {
"panel": "replace",
"reverse": false
},
"command": "show_panel",
"keys": [
"super+r"
]
},
{
"command": "toggle_side_bar",
"keys": [
"ctrl+n"
]
},
{
"command": "terminus_close",
"context": [
{
"key": "terminus_view"
}
],
"keys": [
"super+w"
]
},
{
"args": {
"cwd": "${file_path:${folder}}"
},
"command": "terminus_open",
"keys": [
"super+shift+`"
]
},
{
"args": {
"cwd": "${file_path:${folder}}"
},
"command": "toggle_terminus_panel",
"keys": [
"super+`"
]
},
{
"command": "lsp_show_diagnostics_panel",
"keys": [
"ctrl+`"
]
}
]
{
"extensions":
[
"js"
]
}
// Your settings for FileManager. See the default file to see the different options.
{
"terminals": [
{
"name": "Terminal",
"cmd": ["open", "-a", "Terminal", "$cwd"],
"platform": "osx"
}
]
}
{
"debug": false,
"auto_format_on_save": true,
"allow_inline_formatting": false,
"auto_format_on_save_requires_prettier_config": true
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Log Highlight</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
<dict>
<key>background</key>
<string>#282923</string>
<key>caret</key>
<string>#F29718</string>
<key>foreground</key>
<string>#D7D7D7</string>
<key>lineHighlight</key>
<string>#283240</string>
<key>selection</key>
<string>#3A5166</string>
<key>selectionBorder</key>
<string>#181E26</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>msg.warning.quote</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#4F99D3</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>msg.warning.link</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FD971F</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>msg.warning</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#A1B347</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>msg.error.quote</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#4F99D3</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>msg.error.link</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E6DB74</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>msg.error</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#F92672</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>summary.title</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D7D7D7</string>
</dict>
</dict>
</array>
<key>uuid</key>
<string>403e2150-aad4-41ff-86d0-36d87510918e</string>
</dict>
</plist>
// Settings in here override those in "LSP-css/LSP-css.sublime-settings"
{
"languages": [
{
"languageId": "css",
"document_selector": "source.css",
},
{
"languageId": "scss",
"document_selector": "source.scss"
},
{
"languageId": "less",
"document_selector": "source.less"
},
],
}
// Settings in here override those in "LSP-dockerfile/LSP-dockerfile.sublime-settings"
{
"languages": [
{
"languageId": "dockerfile",
"document_selector": "source.dockerfile"
}
],
}
// Settings in here override those in "LSP-eslint/LSP-eslint.sublime-settings"
{}
// Settings in here override those in "LSP-html/LSP-html.sublime-settings",
{
"languages": [
{
"languageId": "html",
"document_selector": "text.html.basic | source.php"
}
]
}
// Settings in here override those in "LSP-json/LSP-json.sublime-settings"
{
"languages": [
{
"languageId": "json",
"document_selector": "source.json"
}
],
"settings": {
"json": {
"format": { "enable": true }
}
}
}
{
"command": ["${node_bin}", "${server_path}", "--stdio"],
"languages": [
{
"languageId": "typescriptreact",
"scopes": ["source.tsx"],
"syntaxes": [
"Packages/TypeScript Syntax/TypeScriptReact.tmLanguage",
],
},
{
"languageId": "typescript",
"scopes": ["source.ts"],
"syntaxes": [
"Packages/TypeScript Syntax/TypeScript.tmLanguage",
],
},
],
"initializationOptions": {},
"settings": {},
}
{
"languages": [
{
"languageId": "yaml",
"document_selector": "source.yaml | source.yml"
}
]
}
{
"clients": {
// Frontend
"lsp-css": {
"enabled": true
},
"lsp-html": {
"enabled": true
},
// Basics
"lsp-json": {
"enabled": true
},
"lsp-yaml": {
"enabled": true
},
// DevOps basics
"lsp-bash": {
"enabled": true
},
"lsp-dockerfile": {
"enabled": true
},
// Javascript / TypeScript
"lsp-eslint": {
"enabled": true
},
"lsp-typescript": {
"enabled": true
},
// GraphQL
"lsp-graphql": {
"enabled": true
},
// Python
"lsp-pyright": {
"enabled": true
},
"pyls": {
"enabled": false
},
// PHP
"lsp-intelephense": {
"enabled": true
},
// C / C++
"clangd": {
"enabled": true
},
// GoLang
"gopls": {
"enabled": true
},
// OCaml
// Can be used for Reason
// as recommended
"ocaml": {
"enabled": false
},
// Reason/ReasonML
"rls": {
"command": [
"rustup",
"run",
"rls"
],
"enabled": false
},
// Rust
"rust-analyzer": {
"enabled": true
}
},
"show_diagnostics_panel_on_save": 2,
"diagnostics_panel_include_severity_level": 3,
"log_debug": false,
"lsp_code_actions_on_save": {
"source.fixAll": true,
"source.organizeImports": true
},
"lsp_format_on_save": true,
"show_code_actions": "bulb",
"show_diagnostics_count_in_view_status": true,
"show_diagnostics_severity_level": 3,
"show_references_in_quick_panel": true,
"show_symbol_action_links": true
}
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"A File Icon",
"Decent Swift Syntax",
"Dockerfile Syntax Highlighting",
"DotENV",
"EditorConfig",
"fish",
"Gitignore",
"ImagePreview",
"JsPrettier",
"Kotlin",
"LESS",
"Log Highlight",
"LSP",
"LSP-bash",
"LSP-css",
"LSP-dockerfile",
"LSP-eslint",
"LSP-graphql",
"LSP-html",
"LSP-intelephense",
"LSP-json",
"LSP-typescript",
"LSP-yaml",
"Markdown Extended",
"MarkdownPreview",
"Package Control",
"Pretty JSON",
"Reason",
"Rust Enhanced",
"Sass",
"SideBarTools",
"SVGO",
"Swift",
"Sync Settings",
"Terminal",
"Terminus",
"TodoReview",
"TOML",
"TypeScript Syntax",
],
"repositories":
[
"https://github.com/emmetio/sublime-text-plugin/releases/latest/download/registry.json"
],
}
{
"hardware_acceleration": "opengl",
"always_show_minimap_viewport": true,
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_triggers": [
{
"characters": "<",
"selector": "text.html",
},
{
"characters": ".",
"selector": "source.js",
}
],
"binary_file_patterns": [
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip"
],
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme",
"enable_inline_error_tips": true,
"enable_language_service_for_javascript": false,
"enable_typescript_language_service": true,
"fade_fold_buttons": false,
"file_exclude_patterns": [
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace"
],
"folder_exclude_patterns": [
".svn",
".git",
".hg",
"CVS"
],
"font_face": "Monaco",
"font_options": [
"gray_antialias",
"no_round"
],
"font_size": 14,
"git_diff_target": "head",
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages": [
],
"indent_guide_options": [
"draw_normal",
"draw_active"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"lsp_format_on_save": true,
"match_brackets": true,
"match_brackets_angle": true,
"match_brackets_braces": true,
"match_brackets_content": true,
"match_brackets_square": true,
"match_tags": true,
"material_theme_contrast_mode": true,
"native_tabs": "preferred",
"overlay_scroll_bars": "enabled",
"remember_full_screen": true,
"save_on_focus_lost": true,
"show_encoding": true,
"show_git_status": true,
"show_line_endings": true,
"spell_check": true,
"theme": "auto",
"dark_theme": "Adaptive.sublime-theme",
"light_theme": "Default.sublime-theme",
"theme_font_options": [
"gray_antialias"
],
"typescript_auto_format": false,
"update_check": false,
"word_wrap": true,
}
{
"extensions":
[
"jsx"
]
}
{
"variables": {
"white": "#74705d",
"background": "#282924",
"light_red": "color(#f83535 l(+ 15%))",
"light_cyan": "color(#67d8ef l(+ 15%))",
"green": "#a6e22c",
"light_magenta": "color(#f92472 l(+ 15%))",
"light_brown": "color(#e7db74 l(+ 15%))",
"light_blue": "color(#67d8ef l(+ 15%))",
"light_green": "color(#a6e22c l(+ 15%))",
"foreground": "#f8f8f2",
"light_black": "color(#74705d l(+ 15%))",
"red": "#f83535",
"light_white": "#ffffff",
"brown": "#e7db74",
"magenta": "#f92472",
"caret": "#f8f8f2",
"blue": "#67d8ef",
"cyan": "#67d8ef",
"black": "#000000"
},
"name": "Terminus",
"globals": {
"background": "#282923"
}
}
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

This file has been truncated, but you can view the full file.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

@dalisoft
Copy link
Author

{
  "access_token": "******",
  "excluded_files":
  [
    "*.dmg",
    "*.exe",
    "*.DS_Store*",
    "*.sublime-syntax*",
    "*GoSublime-aux.sublime-settings*",
    "*.Spotlight-V100",
    "*.Trashes",
    "*ehthumbs.db",
    "*oscrypto-ca-bundle.crt",
    "*Package Control.cache/*",
    "*Package Control.last-run",
    "*Package Control.merged-ca-bundle",
    "*Package Control.system-ca-bundle",
    "*Package Control.user-ca-bundle",
    "*Thumbs.db"
	],
  "gist_id": "53d864ba0cd20ccd405e8aa4d741ab85"
}

Sync Settings user configuration

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment