diff options
| author | HampusM <hampus@hampusmat.com> | 2024-03-16 12:07:51 +0100 | 
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2024-03-16 12:07:51 +0100 | 
| commit | cd96c873de2a551f00b3c1e138f2fd509b538b60 (patch) | |
| tree | 577d777028f74bca097d900d97ad26e77907539b | |
| parent | 635b69ac3f88cacc30a862809d138d072d55ad3b (diff) | |
use the rust.vim plugin instead of vim-rustfmt
| -rw-r--r-- | lua/plugins.lua | 10 | 
1 files changed, 3 insertions, 7 deletions
| diff --git a/lua/plugins.lua b/lua/plugins.lua index 481bc87..781705e 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -16,8 +16,10 @@ return require("packer").startup(function(use)  	-- Coc  	use {"neoclide/coc.nvim", branch = "release"} -	-- Syntax +	-- Syntax & formatting  	use "tikhomirov/vim-glsl" +	use "rhysd/vim-clang-format" +	use "rust-lang/rust.vim"  	-- Navigation  	use "christoomey/vim-tmux-navigator" @@ -26,13 +28,7 @@ return require("packer").startup(function(use)  	use "junegunn/fzf"  	use "junegunn/fzf.vim" -	-- Formatting -	use "rhysd/vim-clang-format" -  	-- Markdown  	use "preservim/vim-markdown"  	use {"iamcco/markdown-preview.nvim", run = "cd app && yarn install"} - -	-- Formatting -	use "alx741/vim-rustfmt"  end) | 
