live-server-nvim: plugin to run live-server in neovim demo-live-server.mov Requirements npm Installation install the plugin with lazy.nvim as you would for any other: require("lazy").setup({ { "ngtuonghy/live-server-nvim", event = "VeryLazy", build = ":LiveServerInstall", config = functions() require("live-server-nvim").setup{} }, }) Configuration live-server-nvim will not run without setup require('live-server-nvim').setup { custom = { "--port=8080", "--no-css-inject", }, serverPath = vim.fn.stdpath("data") .. "/live-server/", --default open = "folder", -- folder|cwd --default } Supported customized see live-server Usage LiveServerStart--Run server LiveServerStop --Stop server LiveServerToggle --Toggle server Custom mappings vim.keymap.set("n", "<leader>lt", function() require("live-server-nvim").toggle() end) Thank you