summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua31
1 files changed, 17 insertions, 14 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index af1aee4d..1d1a1628 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -138,6 +138,16 @@ return require("packer").startup(function(use)
end,
disable = not O.plugin.zen.active
}
+ -- Ranger
+ use {
+ "kevinhwang91/rnvimr",
+ cmd = "Rnvimr",
+ config = function()
+ require('lv-rnvimr').config()
+ end,
+ disable = not O.plugin.ranger.active
+ }
+
-- matchup
use {
'andymass/vim-matchup',
@@ -186,9 +196,8 @@ return require("packer").startup(function(use)
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = "▏"
- vim.g.indent_blankline_filetype_exclude = {
- "help", "terminal", "dashboard"
- }
+ vim.g.indent_blankline_filetype_exclude =
+ {"help", "terminal", "dashboard"}
vim.g.indent_blankline_buftype_exclude = {"terminal"}
vim.g.indent_blankline_show_trailing_blankline_indent = false
@@ -330,12 +339,6 @@ 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",
@@ -372,9 +375,9 @@ return require("packer").startup(function(use)
-- LANGUAGE SPECIFIC GOES HERE
-- Latex TODO what filetypes should this be active for?
- use {
- "lervag/vimtex",
- ft = "latex",
- disable = not O.lang.latex.active
- }
+ use {"lervag/vimtex", ft = "latex", disable = not O.lang.latex.active}
+
+ -- Rust tools
+ -- TODO: use lazy loading maybe?
+ use {"simrat39/rust-tools.nvim", disable = not O.lang.rust.active}
end)