mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
nvim: lazy load some plugins.
This commit is contained in:
parent
bf5139abd0
commit
7bb5d36e1e
3 changed files with 109 additions and 99 deletions
|
|
@ -1,6 +1,9 @@
|
|||
return {
|
||||
{ import = "user.plugins.editor.treesitter" },
|
||||
"mbbill/undotree",
|
||||
{
|
||||
"mbbill/undotree",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
},
|
||||
-- color highlight in documents
|
||||
{
|
||||
'brenoprata10/nvim-highlight-colors',
|
||||
|
|
@ -48,6 +51,7 @@ return {
|
|||
-- Better status column
|
||||
{
|
||||
"luukvbaal/statuscol.nvim",
|
||||
event = { "BufReadPre", "BufNewFile", "BufAdd" },
|
||||
opts = function()
|
||||
local builtin = require("statuscol.builtin")
|
||||
return {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue