LunarVim/lua/lang/python.lua

93 lines
2.1 KiB
Lua
Raw Normal View History

2021-07-14 06:21:32 +02:00
local M = {}
2021-07-15 03:14:25 +02:00
M.config = function()
O.lang.python = {
-- @usage can be flake8 or yapf
linter = "",
isort = false,
diagnostics = {
virtual_text = { spacing = 0, prefix = "" },
signs = true,
underline = true,
},
analysis = {
type_checking = "basic",
auto_search_paths = true,
use_library_code_types = true,
},
formatter = {
exe = "yapf",
args = {},
stdin = true,
2021-07-15 03:14:25 +02:00
},
2021-07-17 00:30:38 +02:00
linters = {
"flake8",
"pylint",
"mypy",
},
2021-07-15 03:14:25 +02:00
}
end
2021-07-14 06:21:32 +02:00
M.format = function()
O.formatters.filetype["python"] = {
function()
return {
exe = O.lang.python.formatter.exe,
args = O.lang.python.formatter.args,
stdin = O.lang.python.formatter.stdin,
2021-07-14 06:21:32 +02:00
}
end,
}
require("formatter.config").set_defaults {
logging = false,
filetype = O.formatters.filetype,
}
end
M.lint = function()
2021-07-17 00:30:38 +02:00
require("lint").linters_by_ft = {
python = O.lang.python.linters,
2021-07-14 06:21:32 +02:00
}
end
M.lsp = function()
if require("lv-utils").check_lsp_client_active "pyright" then
return
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,
},
},
},
}
end
M.dap = function()
if O.plugin.dap.active then
local dap_install = require "dap-install"
dap_install.config("python_dbg", {})
end
end
return M