diff options
| author | Thomas Schmucker <ts@its1.de> | 2023-07-12 19:07:39 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2023-07-12 19:07:39 +0200 |
| commit | 13059e16abd323fe5611d60e7be48989b905d77a (patch) | |
| tree | 1241a103f490050c43c6884637ae0ebab8b8f9f1 | |
| parent | 1da3b6897973cb7ccda1629ed0417435606c212e (diff) | |
| download | dotfiles-13059e16abd323fe5611d60e7be48989b905d77a.tar.gz dotfiles-13059e16abd323fe5611d60e7be48989b905d77a.tar.bz2 dotfiles-13059e16abd323fe5611d60e7be48989b905d77a.zip | |
einen weiteren LSP für Python hinzugefügt
| -rw-r--r-- | nvim/plugins.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nvim/plugins.vim b/nvim/plugins.vim index f88d959..6c84a23 100644 --- a/nvim/plugins.vim +++ b/nvim/plugins.vim | |||
| @@ -82,6 +82,18 @@ lspconfig.clangd.setup { | |||
| 82 | } | 82 | } |
| 83 | lspconfig.lua_ls.setup {} | 83 | lspconfig.lua_ls.setup {} |
| 84 | lspconfig.pyright.setup {} | 84 | lspconfig.pyright.setup {} |
| 85 | lspconfig.pylsp.setup{ | ||
| 86 | settings = { | ||
| 87 | pylsp = { | ||
| 88 | plugins = { | ||
| 89 | pycodestyle = { | ||
| 90 | ignore = {'W391'}, | ||
| 91 | maxLineLength = 100 | ||
| 92 | } | ||
| 93 | } | ||
| 94 | } | ||
| 95 | } | ||
| 96 | } | ||
| 85 | lspconfig.tsserver.setup {} | 97 | lspconfig.tsserver.setup {} |
| 86 | lspconfig.vimls.setup {} | 98 | lspconfig.vimls.setup {} |
| 87 | lspconfig.rust_analyzer.setup { | 99 | lspconfig.rust_analyzer.setup { |
