summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorAbouzar Parvan <[email protected]>2021-06-30 02:19:23 +0430
committerGitHub <[email protected]>2021-06-29 17:49:23 -0400
commit758798b6f9beef165cdffdbe4cc396b6d18b8f8b (patch)
treeed1e9c23380c03bde5a1bb09602010e12bf9c221 /lua/plugins.lua
parentdbad645f9075e54ce1864dba978e61c478b59e64 (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.lua6
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",