Skip to content

Commit

Permalink
fix(statuscol): make sure nvim-ufo is loaded beforehand
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamHsieh committed Nov 1, 2024
1 parent cd0d65e commit feb28d4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/nvim/lua/plugins/statuscol.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
local M = {
"luukvbaal/statuscol.nvim",
event = "LazyFile",
dependencies = "nvim-ufo",
event = { "VeryLazy", "LazyFile" },
}

function M.config()
Expand All @@ -19,7 +20,8 @@ function M.config()
click = "v:lua.ScLa",
},
{
text = { builtin.foldfunc }, click = "v:lua.ScFa"
text = { builtin.foldfunc },
click = "v:lua.ScFa",
},
},
}
Expand Down

0 comments on commit feb28d4

Please sign in to comment.