Skip to content

Instantly share code, notes, and snippets.

@flavioheleno
Last active December 13, 2023 13:48
Show Gist options
  • Save flavioheleno/565e05835680f9ece2a54dade3e2079c to your computer and use it in GitHub Desktop.
Save flavioheleno/565e05835680f9ece2a54dade3e2079c to your computer and use it in GitHub Desktop.
SublimeText Settings
// Settings in here override those in "LSP/LSP.sublime-settings"
{
"diagnostics_gutter_marker": "bookmark",
"show_code_lens": "phantom",
"clients": {
"phpactor": {
"enabled": true,
"command": ["/usr/local/bin/phpactor", "language-server"],
"selector": "source.php | embedding.php | text.html.php | meta.embedded.php | source.php.embedded.html",
},
},
}
{
"phpactor_bin": "/usr/local/bin/phpactor",
"command_settings": {
"references": {
"filesystem": "git"
},
"complete": {
"enabled": false
}
},
"sidebar_menu_settings": {
"new_php_class": {
"enabled": true
},
"copy_php_class": {
"enabled": true
},
"move_php_class": {
"enabled": true
},
"inflect_php_class": {
"enabled": true
},
"copy_absolute_path": {
"enabled": true
},
"copy_relative_path": {
"enabled": true
}
},
"tab_context_menu_settings": {
"reveal_in_side_bar": {
"enabled": true
},
"copy_absolute_path": {
"enabled": true
},
"copy_relative_path": {
"enabled": true
}
},
"context_menu_settings": {
"copy_absolute_path": {
"enabled": true
},
"copy_relative_path": {
"enabled": true
},
"copy_class_reference": {
"enabled": true
}
}
}
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by syntax-specific settings.
{
"color_scheme": "Monokai.sublime-color-scheme",
"font_face": "Hack",
"fold_buttons": false,
"rulers": [[120, "dotted"]],
"tab_size": 2,
"translate_tabs_to_spaces": true,
"highlight_line": true,
"caret_style": "phase",
"line_padding_top": 0,
"line_padding_bottom": 0,
"trim_trailing_white_space_on_save": "all",
"trim_only_modified_white_space": false,
"ensure_newline_at_eof_on_save": true,
"shift_tab_unindent": true,
"theme": "Adaptive.sublime-theme",
"bold_folder_labels": true,
"adaptive_dividers": true,
"hide_tab_scrolling_buttons": true,
"hide_new_tab_button": true,
"show_encoding": true,
"show_line_endings": true,
"remember_layout": true,
"update_system_recent_files": false,
"index_exclude_gitignore": false,
"ignored_packages":
[
"Vintage",
],
"update_check": false,
"scroll_past_end": false,
"font_size": 8,
}
// SublimeLinter Settings - User
{
// "debug": true,
"linters": {
"json": {
"@disable": false,
"args": [],
"excludes": [],
"strict": true
},
"annotations": {
"@disable": false,
"args": [],
"errors": [
"FIXME"
],
"excludes": [],
"warnings": [
"NOTE",
"README",
"TODO",
"XXX",
"@todo"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment