Last active
August 23, 2022 07:28
-
-
Save danslapman/a3ff9dc68c5782e87b8aaee967934556 to your computer and use it in GitHub Desktop.
Sublime text 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
Show hidden characters
[ | |
{ "keys": ["alt+space"], "command": "auto_complete" }, | |
{ "keys": ["alt+q"], "command": "lsp_signature_help_show" } | |
] |
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
[ | |
{ | |
"button": "button1", | |
"count": 1, | |
"modifiers": ["ctrl"], | |
"press_command": "drag_select", | |
"command": "lsp_symbol_definition" | |
} | |
] |
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
// Settings in here override those in "LSP/LSP.sublime-settings" | |
{ | |
"prefer_label_over_filter_text": true, | |
"clients": { | |
"fsautocomplete": { | |
"enabled": true, | |
"command": ["fsautocomplete", "--background-service-enabled"], | |
"selector": "source.fsharp", | |
"initializationOptions": { | |
"AutomaticWorkspaceInit": 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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"0x0", | |
"F#", | |
"LSP", | |
"LSP-metals", | |
"Package Control", | |
"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
{ | |
"font_face": "Fira Code", | |
"font_options": | |
[ | |
"gray_antialias" | |
], | |
"remember_full_screen": true, | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment