-- -- Author : Dennis Eriksen -- File : python.lua -- Created : 2024-02-15 -- return { { -- https://github.com/neovim/nvim-lspconfig "neovim/nvim-lspconfig", opts = { servers = { ruff = { enabled = true, mason = false, cmd_env = { RUFF_TRACE = "messages" }, init_options = { settings = { logLevel = "error", }, }, }, }, }, }, { -- https://github.com/stevearc/conform.nvim "stevearc/conform.nvim", opts = { formatters_by_ft = { python = function(bufnr) if require("conform").get_formatter_info("ruff_format", bufnr).available then return{ "ruff_fix", "ruff_format", "ruff_organize_imports" } else return {} end end, }, }, }, }