diff options
author | Chris <[email protected]> | 2021-06-29 18:55:01 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-06-29 18:55:01 -0400 |
commit | fba5bc3d8590ccaad017bd4643ddea5a890ca098 (patch) | |
tree | f0581178e1a9c6eedfe96fe7d7213349a6f92f76 /lua/plugins.lua | |
parent | 758798b6f9beef165cdffdbe4cc396b6d18b8f8b (diff) |
updates, everything false by default
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 31 |
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) |