Created
September 16, 2017 18:11
-
-
Save urschrei/5f526b1a00378bfc049b23323b0002fb to your computer and use it in GitHub Desktop.
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
// Settings in here override those in "LSP/LSP.sublime-settings", | |
{ | |
"clients": | |
{ | |
"rls": | |
{ | |
"auto_complete_triggers": [ {"selector": "source.rust", "characters": ".:"} ], | |
"diagnostics_highlight_style": "box", | |
"command": ["rustup", "run", "nightly", "rls"], | |
"scopes": ["source.rust"], | |
"syntaxes": ["Packages/Rust/Rust.sublime-syntax"], | |
"languageId": "rust" | |
} | |
}, | |
"show_status_messages": true, | |
"show_view_status": true, | |
"auto_show_diagnostics_panel": true, | |
"show_diagnostics_phantoms": false, | |
"show_diagnostics_in_view_status": true, | |
"diagnostics_highlight_style": "underline", | |
"complete_all_chars": true, | |
"log_debug": false, | |
"log_server": true, | |
"log_stderr": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment