mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
11 lines
300 B
Lua
11 lines
300 B
Lua
|
return {
|
||
|
"barrett-ruth/live-server.nvim",
|
||
|
build = "npm i -g live-server",
|
||
|
cmd = { "LiveServerStart", "LiveServerStop", "LiveServerToggle" },
|
||
|
config = true,
|
||
|
keys = {
|
||
|
-- open http://localhost:5555/ jika menggunakan wsl
|
||
|
{ "<leader>rl", "<cmd>LiveServerToggle<cr>", desc = "LiveServer" },
|
||
|
},
|
||
|
}
|