mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
21 lines
739 B
Lua
21 lines
739 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,
|
|
},
|
|
}
|