LunarVim/ftplugin/python.lua

66 lines
1.9 KiB
Lua
Raw Normal View History

2021-07-02 05:42:26 +02:00
local python_arguments = {}
-- TODO replace with path argument
local flake8 = {
2021-07-05 03:14:01 +02:00
LintCommand = "flake8 --ignore=E501 --stdin-display-name ${INPUT} -",
lintStdin = true,
lintFormats = { "%f:%l:%c: %m" },
2021-07-02 05:42:26 +02:00
}
2021-07-05 03:14:01 +02:00
local isort = { formatCommand = "isort --quiet -", formatStdin = true }
2021-07-02 05:42:26 +02:00
2021-07-05 03:14:01 +02:00
local yapf = { formatCommand = "yapf --quiet", formatStdin = true }
local black = { formatCommand = "black --quiet -", formatStdin = true }
2021-07-02 05:42:26 +02:00
2021-07-05 03:14:01 +02:00
if O.lang.python.linter == "flake8" then
table.insert(python_arguments, flake8)
end
2021-07-02 05:42:26 +02:00
2021-07-05 03:14:01 +02:00
if O.lang.python.isort then
table.insert(python_arguments, isort)
end
2021-07-02 05:42:26 +02:00
2021-07-05 03:14:01 +02:00
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,
},
},
2021-07-02 05:42:26 +02:00
}
-- npm i -g pyright
2021-07-05 03:14:01 +02:00
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,
},
2021-07-01 00:45:40 +02:00
},
2021-07-05 03:14:01 +02:00
},
}
2021-07-05 06:52:36 +02:00
2021-07-05 19:58:38 +02:00
if O.plugin.debug.active and O.plugin.dap_install.active then
2021-07-05 16:36:01 +02:00
local dap_install = require("dap-install")
dap_install.config("python_dbg", {})
end