mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-14 03:14:43 +02:00
plugins configured
This commit is contained in:
parent
6e6cc4cfb6
commit
f312d3c88b
2 changed files with 42 additions and 14 deletions
|
@ -52,6 +52,10 @@ O = {
|
||||||
lsp_colors = {active = false},
|
lsp_colors = {active = false},
|
||||||
git_blame = {active = false},
|
git_blame = {active = false},
|
||||||
gitlinker = {active = false},
|
gitlinker = {active = false},
|
||||||
|
lazygit = {active = false},
|
||||||
|
octo = {active = false},
|
||||||
|
diffview = {active = false},
|
||||||
|
bracey = {active = false},
|
||||||
telescope_project = {active = false}
|
telescope_project = {active = false}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
|
@ -330,21 +330,45 @@ return require("packer").startup(function(use)
|
||||||
requires = 'nvim-lua/plenary.nvim'
|
requires = 'nvim-lua/plenary.nvim'
|
||||||
|
|
||||||
}
|
}
|
||||||
-- Git
|
-- Lazygit
|
||||||
-- https://github.com/kdheepak/lazygit.nvim
|
use {
|
||||||
-- pwntester/octo.nvim
|
"kdheepak/lazygit.nvim",
|
||||||
-- use 'sindrets/diffview.nvim'
|
cmd = "LazyGit",
|
||||||
|
disable = not O.plugin.lazygit.active
|
||||||
|
}
|
||||||
|
-- Lazygit
|
||||||
|
use {
|
||||||
|
"pwntester/octo.nvim",
|
||||||
|
event = "BufRead",
|
||||||
|
disable = not O.plugin.octo.active
|
||||||
|
}
|
||||||
|
-- Diffview
|
||||||
|
use {
|
||||||
|
"sindrets/diffview.nvim",
|
||||||
|
event = "BufRead",
|
||||||
|
disable = not O.plugin.diffview.active
|
||||||
|
}
|
||||||
-- Easily Create Gists
|
-- Easily Create Gists
|
||||||
-- use {'mattn/vim-gist', opt = true}
|
use {
|
||||||
-- use {'mattn/webapi-vim', opt = true}
|
"mattn/vim-gist",
|
||||||
|
event = "BufRead",
|
||||||
-- Not sure yet
|
disable = not O.plugin.gist.active,
|
||||||
|
requires = 'mattn/webapi-vim'
|
||||||
|
}
|
||||||
-- HTML preview
|
-- HTML preview
|
||||||
-- use {
|
use {
|
||||||
-- 'turbio/bracey.vim',
|
'turbio/bracey.vim',
|
||||||
-- run = 'npm install --prefix server',
|
event = "BufRead",
|
||||||
-- opt = true
|
run = 'npm install --prefix server',
|
||||||
-- }
|
disable = not O.plugin.bracey.active
|
||||||
|
}
|
||||||
|
|
||||||
|
-- LANGUAGE SPECIFIC GOES HERE
|
||||||
|
|
||||||
-- Latex TODO what filetypes should this be active for?
|
-- Latex TODO what filetypes should this be active for?
|
||||||
-- use {"lervag/vimtex", opt = true}
|
use {
|
||||||
|
"lervag/vimtex",
|
||||||
|
ft = "latex",
|
||||||
|
disable = not O.lang.latex.active
|
||||||
|
}
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue