From 5974fb5c048355cad4538005dacfded39fd9b49d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tanguy=20G=C3=A9r=C3=B4me?= Date: Mon, 16 Sep 2024 13:45:55 +0300 Subject: [PATCH] Add coc-rust-analyzer in .vimrc --- .vimrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 28e2952..b72df96 100644 --- a/.vimrc +++ b/.vimrc @@ -35,7 +35,8 @@ let g:coc_global_extensions = [ \ 'coc-tsserver', \ 'coc-html', \ 'coc-json', - \ 'coc-pyright' + \ 'coc-pyright', + \ 'coc-rust-analyzer' \ ] call plug#end() @@ -117,6 +118,9 @@ autocmd Filetype scss setlocal ts=2 sw=2 expandtab autocmd Filetype css setlocal ts=2 sw=2 expandtab autocmd Filetype python setlocal ts=4 sts=4 sw=4 expandtab +" rust + + " PYTHON PROVIDERS {{{ if has('macunix')