diff --git a/init.lua b/init.lua index 3a394a9c..cec7cfa5 100644 --- a/init.lua +++ b/init.lua @@ -546,8 +546,8 @@ require('lazy').setup({ -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ local servers = { -- clangd = {}, - -- gopls = {}, - -- pyright = {}, + gopls = {}, + pyright = {}, -- rust_analyzer = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- @@ -587,6 +587,7 @@ require('lazy').setup({ local ensure_installed = vim.tbl_keys(servers or {}) vim.list_extend(ensure_installed, { 'stylua', -- Used to format Lua code + 'ruff', -- Used to lint and format Python code }) require('mason-tool-installer').setup { ensure_installed = ensure_installed }