Files
opencloud/vendor/github.com/kovidgoyal/imaging/.nvim.lsp.lua
dependabot[bot] 85361fca67 build(deps): bump github.com/kovidgoyal/imaging from 1.7.2 to 1.8.17
Bumps [github.com/kovidgoyal/imaging](https://github.com/kovidgoyal/imaging) from 1.7.2 to 1.8.17.
- [Release notes](https://github.com/kovidgoyal/imaging/releases)
- [Changelog](https://github.com/kovidgoyal/imaging/blob/master/.goreleaser.yaml)
- [Commits](https://github.com/kovidgoyal/imaging/compare/v1.7.2...v1.8.17)

---
updated-dependencies:
- dependency-name: github.com/kovidgoyal/imaging
  dependency-version: 1.8.17
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-26 14:46:30 +01:00

17 lines
457 B
Lua

#!/usr/bin/env lua
local lspconfig = require('lspconfig')
-- Get the existing gopls configuration to merge with it
local gopls_opts = lspconfig.gopls.get_default_options()
-- Merge the project-specific settings
lspconfig.gopls.setup({
-- Extend or override settings from your global config
settings = vim.tbl_deep_extend("force", gopls_opts.settings or {}, {
gopls = {
buildFlags = { "-tags=lcms2cgo" },
},
}),
})