feat: change liveserver implementation

This commit is contained in:
jabuxas 2024-10-08 17:03:10 -03:00
parent 1c8cd80966
commit 6f0bb06014
2 changed files with 5 additions and 2 deletions

View File

@ -127,6 +127,7 @@ elseif fileContent == "solarized" then
config = function(_, opts) config = function(_, opts)
vim.o.termguicolors = true vim.o.termguicolors = true
require('solarized').setup(opts) require('solarized').setup(opts)
vim.o.background = 'dark'
vim.cmd.colorscheme 'solarized' vim.cmd.colorscheme 'solarized'
end, end,
} }

View File

@ -1,4 +1,6 @@
return { return {
"barrett-ruth/live-server.nvim", "ngtuonghy/live-server-nvim",
config = true, event = "VeryLazy",
build = ":LiveServerInstall",
opts = {}
} }