add python settings

This commit is contained in:
Zoe 2022-04-20 16:02:27 +02:00
parent 9420badb70
commit a9516bbbe4
2 changed files with 8 additions and 1 deletions

6
.vimrc
View file

@ -63,6 +63,12 @@ let g:dracula_transparent_bg = 'true'
let g:termguicolors = 'true'
" python notebooks
Plug 'jupyter-vim/jupyter-vim'
"python format
Plug 'averms/black-nvim', {'do': ':UpdateRemotePlugins'}
"Language tool
Plug 'vigoux/LanguageTool.nvim'

View file

@ -12,5 +12,6 @@
"rust-analyzer.updates.channel": "nightly",
"rust-analyzer.diagnostics.disabled": [
"unresolved-macro-call"
]
],
"python.pythonPath": "python3",
}