You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
346 B
13 lines
346 B
local M = { |
|
-- "LunarVim/primer.nvim", |
|
"LunarVim/darkplus.nvim", |
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme |
|
priority = 1000, -- make sure to load this before all the other start plugins |
|
} |
|
|
|
function M.config() |
|
-- vim.cmd.colorscheme "primer_dark" |
|
vim.cmd.colorscheme "darkplus" |
|
end |
|
|
|
return M
|
|
|