mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-14 11:24:43 +02:00
updates, everything false by default
This commit is contained in:
parent
758798b6f9
commit
fba5bc3d85
5 changed files with 292 additions and 307 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue