explicitly specify path to python for coc, enable autoImportCompletions

This commit is contained in:
Sumner Evans
2021-04-17 09:47:24 -06:00
parent 536d239d71
commit d5929917c7
2 changed files with 5 additions and 2 deletions

2
.envrc
View File

@@ -7,4 +7,6 @@ watch_file pyproject.toml
watch_file poetry.lock
watch_file shell.nix
set POETRY_VIRTUALENVS_IN_PROJECT
unset PS1

View File

@@ -1,8 +1,9 @@
{
"python.analysis.openFilesOnly": false,
"python.analysis.autoImportCompletions": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.linting.mypyEnabled": true,
"python.formatting.provider": "black"
"python.formatting.provider": "black",
"python.pythonPath": "/home/sumner/projects/sublime-music/sublime-music/.venv/bin/python"
}