summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/lsp/python-ls.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-07 01:05:06 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-07 01:05:06 +0200
commit0111b31cb0008f4fcc55ddc373e63f124652b156 (patch)
tree075490fb19c4838fc58129da9f902a3370f6029e /.config/nvim/lua/lsp/python-ls.lua
parent6fcc69113bd7cc7295ef9dc068da80d043cbb8bb (diff)
Updated config based on Chris LunarVim release
Diffstat (limited to '.config/nvim/lua/lsp/python-ls.lua')
-rw-r--r--.config/nvim/lua/lsp/python-ls.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/.config/nvim/lua/lsp/python-ls.lua b/.config/nvim/lua/lsp/python-ls.lua
deleted file mode 100644
index d4dfac5..0000000
--- a/.config/nvim/lua/lsp/python-ls.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-
--- npm i -g pyright
-require'lspconfig'.pyright.setup {
- cmd = {DATA_PATH .. "/lspinstall/python/node_modules/.bin/pyright-langserver", "--stdio"},
- on_attach = require'lsp'.common_on_attach,
- handlers = {
- ["textDocument/publishDiagnostics"] = vim.lsp.with(vim.lsp.diagnostic.on_publish_diagnostics, {
- virtual_text = O.python.diagnostics.virtual_text,
- signs = O.python.diagnostics.signs,
- underline = O.python.diagnostics.underline,
- update_in_insert = true
- })
- },
- settings = {
- python = {
- analysis = {
- typeCheckingMode = O.python.analysis.type_checking,
- autoSearchPaths = O.python.analysis.auto_search_paths,
- useLibraryCodeForTypes = O.python.analysis.use_library_code_types
- }
- }
- }
-}