1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Add plugin live-command.nvim

This commit is contained in:
jdhao 2024-09-19 22:06:20 +02:00
parent 81f64ed32e
commit 154cde3d71
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,6 @@
require("live-command").setup {
defaults = {
enable_highlighting = false,
inline_highlighting = false,
},
}

View File

@ -563,6 +563,16 @@ local plugin_specs = {
require("copilot").setup {}
end,
},
{
"smjonas/live-command.nvim",
-- live-command supports semantic versioning via Git tags
-- tag = "2.*",
cmd = "Preview",
config = function()
require("config.live-command")
end,
event = "VeryLazy"
},
}
require("lazy").setup {