aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugin/liveserver.lua
diff options
context:
space:
mode:
authorXander Swan <email>2025-12-03 10:00:41 -0500
committerXander Swan <email>2025-12-03 10:00:41 -0500
commit6d4208a39ba4a576c310a301eb576d84eec1ddaf (patch)
treebeef17e3d6e88f08b68673d3d3e394d19639cd78 /.config/nvim/lua/plugin/liveserver.lua
parentd0f041df4db23a512fa2d2a7c655af0b2c7e88c5 (diff)
Entirely new config
Diffstat (limited to '.config/nvim/lua/plugin/liveserver.lua')
-rw-r--r--.config/nvim/lua/plugin/liveserver.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/.config/nvim/lua/plugin/liveserver.lua b/.config/nvim/lua/plugin/liveserver.lua
deleted file mode 100644
index 542a1fb..0000000
--- a/.config/nvim/lua/plugin/liveserver.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-local status_ok, live_server = pcall(require, "live_server")
-if not status_ok then
- return
-end
-
-live_server.setup({
- port = 8080,
- browser_command = "", -- Empty string starts up with default browser
- quiet = false,
- no_css_inject = false, -- Disables css injection if true, might be useful when testing out tailwindcss
- install_path = vim.fn.stdpath "config" .. "/live-server/",
-})
-