From fba5bc3d8590ccaad017bd4643ddea5a890ca098 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 29 Jun 2021 18:55:01 -0400 Subject: updates, everything false by default --- lua/plugins.lua | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) (limited to 'lua/plugins.lua') 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) -- cgit v1.2.3