diff options
| author | Teddy Wing | 2020-02-13 01:09:31 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2020-02-26 00:55:21 +0100 | 
| commit | 0a6a5ddd4845e138f60917792ca1e921cd6c851f (patch) | |
| tree | ef61edbeeb7d4ed2948bdcc8b51c41357ee4226c /vimrc | |
| parent | c30bb66fefc3ffae4a2ceff7dae7bbba946649a5 (diff) | |
| download | dotvim-0a6a5ddd4845e138f60917792ca1e921cd6c851f.tar.bz2 | |
vimrc: Turn off `gopls` in vim-go
The `gopls` tool is super slow and eats up way too many computing
resources.
Diffstat (limited to 'vimrc')
| -rw-r--r-- | vimrc | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -445,6 +445,9 @@  "   2019.11.29:  "       * Set 'grepprg' to Ripgrep.  " +"   2020.02.12: +"       * Turn off `gopls` in vim-go. +"  " Pathogen @@ -674,6 +677,7 @@ let g:slimv_swank_cmd = '! screen -d -m -t REPL-SBCL sbcl --load ~/.vim/bundle/s  " Go  let g:go_version_warning = 0  let g:go_fmt_command = 'goimports' +let g:go_gopls_enabled = 0  " Whitespace method chain | 
