mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
12 lines
362 B
Lua
12 lines
362 B
Lua
|
return {
|
||
|
"barrett-ruth/live-server.nvim",
|
||
|
build = "npm i -g live-server",
|
||
|
cmd = { "LiveServerStart", "LiveServerStop" },
|
||
|
config = true,
|
||
|
keys = {
|
||
|
{ "<leader>rl", "", desc = " LiveServer" },
|
||
|
{ "<leader>rls", "<cmd>LiveServerStart<cr>", desc = "LiveServerStart" },
|
||
|
{ "<leader>rlq", "<cmd>LiveServerStop<cr>", desc = "LiveServerStop" },
|
||
|
},
|
||
|
}
|