diff options
| author | Ahmed Abdelhalim <[email protected]> | 2023-09-21 22:12:57 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2023-09-21 22:12:57 +0200 |
| commit | bcc926c760ddc999236d98e0bd265b00ca4dd12d (patch) | |
| tree | e9a310c7bbe8376250b5285ac43750e98cc56393 | |
| parent | d3d5d5c0cca3f7439e1f3df16281e391fdc999f4 (diff) | |
Fix golang configurations for linting and ALE
| -rw-r--r-- | .vimrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -172,6 +172,10 @@ let g:ale_virtualtext_single = 0 " show one error at a time in the virutal text let g:ale_virtualtext_cursor = 0 " disable virtual text let g:ale_echo_cursor = 1 " echo the (error/warning) message to the hover section let g:ale_cursor_detail = 1 " preview window will open automatically on cursor +" let g:ale_completion_max_suggestions = -1 " Increase suggestions +let g:ale_linters = { + \ 'go': ['gopls'], + \} "Deoplete (Auto complete) "======================== |
