| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | local M = {}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,    },    linters = {      "flake8",      "pylint",      "mypy",    },  }endM.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,      }    end,  }  require("formatter.config").set_defaults {    logging = false,    filetype = O.formatters.filetype,  }endM.lint = function()  require("lint").linters_by_ft = {    python = O.lang.python.linters,  }endM.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,        },      },    },  }endM.dap = function()  if O.plugin.dap.active then    local dap_install = require "dap-install"    dap_install.config("python_dbg", {})  endendreturn M
 |