started to add go functionality

This commit is contained in:
adollar 2025-06-26 01:50:02 +01:00
parent 024bd7e8ea
commit 8a37b7072e
4 changed files with 104 additions and 154 deletions

View file

@ -210,7 +210,7 @@ return {
-- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
local servers = {
-- clangd = {},
-- gopls = {},
gopls = {},
-- pyright = {},
ruff = {},
-- rust_analyzer = {},
@ -254,6 +254,8 @@ return {
local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, {
'stylua', -- Used to format Lua code
'goimports',
'prettierd',
})
require('mason-tool-installer').setup { ensure_installed = ensure_installed }