starter/lua/plugins/lazyvim.lua
2025-02-25 14:16:01 -03:00

25 lines
811 B
Lua

return {
"LazyVim/LazyVim",
defaults = {
lazy = false, -- Ensures plugins do not update automatically
version = false, -- Prevents auto-updating to the latest version
},
-- lockfile = vim.fn.stdpath("data") .. "/lazy/lazy-lock.json", -- Ensures updates use the lock file
opts = {
-- colorscheme = "tokyonight-moon",
colorscheme = "tokyonight-storm",
config = function()
vim.defer_fn(function()
vim.api.nvim_set_hl(0, "Normal", { bg = "#394264" }) -- Change background color
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#394264" }) -- Change background for floating windows
vim.cmd([[highlight Comment guifg=#222436 guibg=#5c5e77 gui=italic]])
end, 1000)
end,
keys = {
-- { "<leader>ff", false }, -- disable a key
},
},
}