diff options
author | Abouzar Parvan <[email protected]> | 2021-06-30 02:19:23 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-06-29 17:49:23 -0400 |
commit | 758798b6f9beef165cdffdbe4cc396b6d18b8f8b (patch) | |
tree | ed1e9c23380c03bde5a1bb09602010e12bf9c221 /lua/plugins.lua | |
parent | dbad645f9075e54ce1864dba978e61c478b59e64 (diff) |
added rust-tools thanks to bob3000 (#544)
* added rust-tools
* require_plugin has been removed
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 1c5088cd..af1aee4d 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -330,6 +330,12 @@ return require("packer").startup(function(use) requires = 'nvim-lua/plenary.nvim' } + -- Rust tools + -- TODO: use lazy loading maybe? + use { + "simrat39/rust-tools.nvim", + disable = not O.lang.rust.active + } -- Lazygit use { "kdheepak/lazygit.nvim", |