updates, everything false by default

This commit is contained in:
Chris 2021-06-29 18:55:01 -04:00
parent 758798b6f9
commit fba5bc3d85
5 changed files with 292 additions and 307 deletions

View file

@ -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)