This commit is contained in:
asep komarudin 2023-08-06 13:03:29 +07:00
parent 1e92404fc3
commit 0355d5dc2a
3 changed files with 24 additions and 9 deletions

View file

@ -121,4 +121,18 @@ return {
-- end,
-- },
--
{
"barrett-ruth/live-server.nvim",
build = "yarn global add live-server",
config = true,
init = function()
require("live-server").setup({
-- Arguments passed to live-server via `vim.fn.jobstart()`
-- Run `live-server --help` to see list of available options
-- For example, to use port 7000 and browser firefox:
args = { "--port=7000", "--browser=firefox" },
--args = {},
})
end,
},
}