diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-01-12 23:35:24 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-01-12 23:35:24 +0100 |
| commit | c6ee7dcf2f211fe37e83a6443f565ef1a88095eb (patch) | |
| tree | 80b70221d5cdb85a8fa7c9024167d33f21a419aa /sublime-text/LSP.sublime-settings | |
| parent | b6e8a983ecb17ea05fc08e51599877ae8d0535ce (diff) | |
.
Diffstat (limited to 'sublime-text/LSP.sublime-settings')
| -rw-r--r-- | sublime-text/LSP.sublime-settings | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/sublime-text/LSP.sublime-settings b/sublime-text/LSP.sublime-settings index 2795f48..751bfb9 100644 --- a/sublime-text/LSP.sublime-settings +++ b/sublime-text/LSP.sublime-settings @@ -1,10 +1,20 @@ { "show_diagnostics_panel_on_save": 0, "clients": { - "pylsp": { - "command": ["pylsp"], + "jedi": { + "command": ["jedi-language-server"], "selector": "source.python", - "enabled": false, + "enabled": true, }, + "bash-language-server": { + "command": ["bash-language-server", "start"], + "selector": "source.shell.bash", + "enabled": true, + }, + "clangd": { + "command": ["clangd", "--header-insertion=never"], + "selector": "source.c | source.c++", + "enabled": true, + }, }, } |
