Skip to content

Commit

Permalink
refactor: move language configuration down
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl committed Dec 16, 2021
1 parent 0b52c1f commit 8d8f072
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions LSP-pylsp.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@
// $DATA/Packages/User/LSP-pylsp.sublime-settings.
{
"command": ["$server_path"],
// ST4
"selector": "source.python",
// ST3
"languages": [
{
"languageId": "python",
"scopes": ["source.python"],
"syntaxes": ["Packages/Python/Python.sublime-syntax"],
}
],
"env": {
"PYTHONPATH": "${sublime_py_files_dir}${pathsep}${packages}",
// Override MYPYPATH to extend the paths that mypy searches when looking for stub files.
Expand Down Expand Up @@ -200,4 +190,14 @@
"pylsp.plugins.pyls_isort.enabled": false,
"pylsp.plugins.pylsp_black.enabled": false,
},
// ST4
"selector": "source.python",
// ST3
"languages": [
{
"languageId": "python",
"scopes": ["source.python"],
"syntaxes": ["Packages/Python/Python.sublime-syntax"],
}
],
}

0 comments on commit 8d8f072

Please sign in to comment.