summaryrefslogtreecommitdiff
path: root/ftplugin/python.lua
diff options
context:
space:
mode:
authorhui.liu <[email protected]>2021-07-09 00:35:41 +0800
committerGitHub <[email protected]>2021-07-08 12:35:41 -0400
commit53fed9d65538e0b9dcad6f32cca63b1d445a76dd (patch)
tree2c28d47cff9c45f5c5626516118600e4a8e6621b /ftplugin/python.lua
parent9233611bdcad1603cd217f6cc8a90e1a7e7a91b8 (diff)
Check lsp client is active for all language files (#790)
Diffstat (limited to 'ftplugin/python.lua')
-rw-r--r--ftplugin/python.lua74
1 files changed, 39 insertions, 35 deletions
diff --git a/ftplugin/python.lua b/ftplugin/python.lua
index a9b41648..0cf7c1a7 100644
--- a/ftplugin/python.lua
+++ b/ftplugin/python.lua
@@ -20,46 +20,50 @@ if O.lang.python.isort then
table.insert(python_arguments, isort)
end
-require("lspconfig").efm.setup {
- -- init_options = {initializationOptions},
- cmd = { DATA_PATH .. "/lspinstall/efm/efm-langserver" },
- init_options = { documentFormatting = true, codeAction = false },
- filetypes = { "python" },
- settings = {
- rootMarkers = { ".git/", "requirements.txt" },
- languages = {
- python = python_arguments,
+if not require("lv-utils").check_lsp_client_active "efm" then
+ require("lspconfig").efm.setup {
+ -- init_options = {initializationOptions},
+ cmd = { DATA_PATH .. "/lspinstall/efm/efm-langserver" },
+ init_options = { documentFormatting = true, codeAction = false },
+ filetypes = { "python" },
+ settings = {
+ rootMarkers = { ".git/", "requirements.txt" },
+ languages = {
+ python = python_arguments,
+ },
},
- },
-}
+ }
+end
--- 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.lang.python.diagnostics.virtual_text,
- signs = O.lang.python.diagnostics.signs,
- underline = O.lang.python.diagnostics.underline,
- update_in_insert = true,
- }),
- },
- settings = {
- python = {
- analysis = {
- typeCheckingMode = O.lang.python.analysis.type_checking,
- autoSearchPaths = O.lang.python.analysis.auto_search_paths,
- useLibraryCodeForTypes = O.lang.python.analysis.use_library_code_types,
+if not require("lv-utils").check_lsp_client_active "pyright" then
+ -- 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.lang.python.diagnostics.virtual_text,
+ signs = O.lang.python.diagnostics.signs,
+ underline = O.lang.python.diagnostics.underline,
+ update_in_insert = true,
+ }),
+ },
+ settings = {
+ python = {
+ analysis = {
+ typeCheckingMode = O.lang.python.analysis.type_checking,
+ autoSearchPaths = O.lang.python.analysis.auto_search_paths,
+ useLibraryCodeForTypes = O.lang.python.analysis.use_library_code_types,
+ },
},
},
- },
-}
+ }
+end
if O.plugin.debug.active and O.plugin.dap_install.active then
- local dap_install = require("dap-install")
+ local dap_install = require "dap-install"
dap_install.config("python_dbg", {})
end