Compare commits

..

3 Commits

Author SHA1 Message Date
5293429023 fix: add cursorline 2024-10-10 15:08:21 -03:00
6f0bb06014 feat: change liveserver implementation 2024-10-08 17:03:21 -03:00
1c8cd80966 feat: add lsp handling for non mason 2024-09-18 14:11:51 -03:00
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 = {}
} }