mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 10:05:17 +00:00
19 lines
451 B
Lua
19 lines
451 B
Lua
vim.pack.add({
|
|
"https://github.com/barrettruth/canola.nvim",
|
|
"https://github.com/barrettruth/canola-collection",
|
|
}, { load = function() end })
|
|
|
|
local canola_config = require("config.canola")
|
|
|
|
return {
|
|
{
|
|
"barrettruth/canola.nvim",
|
|
cmd = "Canola",
|
|
before = canola_config.setup_globals,
|
|
after = canola_config.setup_integrations,
|
|
keys = {
|
|
{ "-", "<cmd>Canola<cr>" },
|
|
{ "<leader>e", "<cmd>Canola<cr>" },
|
|
},
|
|
},
|
|
}
|