Created
May 31, 2022 14:21
-
-
Save benmoss/32be75a5e1e21b23e64cfb03298c1353 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Called before everything, even before loading plugins | |
| -- Do things that need to happen very early such as: | |
| -- vim.g.fzf_command_prefix = 'Fuzzy' | |
| -- ... | |
| require('go').setup({ | |
| lsp_cfg = { | |
| settings = { | |
| gopls = { | |
| buildFlags = { | |
| "-tags", "e2e", | |
| }, | |
| }, | |
| }, | |
| } | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment