We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My config:
require("go").setup({ lsp_inlay_hints = { enable = false, }, lsp_cfg = true, }) -- Run gofmt + goimports on save local format_sync_grp = vim.api.nvim_create_augroup("goimports", {}) vim.api.nvim_create_autocmd("BufWritePre", { pattern = "*.go", callback = function() require("go.format").goimports() end, group = format_sync_grp, })
I don't know if this is a bug or an issue with my configuration
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My config:
I don't know if this is a bug or an issue with my configuration
The text was updated successfully, but these errors were encountered: