We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 387164f commit 2c671a7Copy full SHA for 2c671a7
1 file changed
init.lua
@@ -249,14 +249,14 @@ require('lazy').setup({
249
local schemes = {
250
-- 'everforest',
251
-- 'tokyodark',
252
- 'material',
+ -- 'material',
253
'rose-pine',
254
- 'tokyonight-night',
+ -- 'tokyonight-night',
255
}
256
257
math.randomseed(os.time())
258
259
-local random_scheme = schemes[math.random(#schemes)]
+local random_scheme = schemes[math.random(#schemes)] -- #schemes gets the length of the schemes table
260
261
local ok, _ = pcall(vim.cmd.colorscheme, random_scheme)
262
if not ok then
0 commit comments