diff options
author | Guangxiong Lin <[email protected]> | 2023-10-25 00:22:21 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2023-10-25 00:22:21 +0800 |
commit | 056048e9df3a280074ad9b937dca2c703584e492 (patch) | |
tree | 84740693a293c680a4a36d6499889136dd25397c /.vim/after | |
parent | a69fe12c1544bddc9e2a656befb93a0678f4573b (diff) | |
download | dotfiles-056048e9df3a280074ad9b937dca2c703584e492.tar.gz dotfiles-056048e9df3a280074ad9b937dca2c703584e492.tar.bz2 dotfiles-056048e9df3a280074ad9b937dca2c703584e492.zip |
Enable gopls in gomod
Diffstat (limited to '.vim/after')
-rw-r--r-- | .vim/after/plugin/lsp.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/after/plugin/lsp.vim b/.vim/after/plugin/lsp.vim index 8a853e7..04a9647 100644 --- a/.vim/after/plugin/lsp.vim +++ b/.vim/after/plugin/lsp.vim @@ -27,7 +27,7 @@ if executable('gopls') au User lsp_setup call lsp#register_server({ \ 'name': 'gopls', \ 'cmd': {server_info->['gopls']}, - \ 'allowlist': ['go'], + \ 'allowlist': ['go', 'gomod'], \ 'initialization_options': { \ 'ui.completion.usePlaceholders': v:true, \ }, |