Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for _, source in ipairs {
- "astronvim.bootstrap",
- "astronvim.options",
- "astronvim.lazy",
- "astronvim.autocmds",
- "astronvim.mappings",
- } do
- local status_ok, fault = pcall(require, source)
- if not status_ok then vim.api.nvim_err_writeln("Failed to load " .. source .. "\n\n" .. fault) end
- end
- if astronvim.default_colorscheme then
- if not pcall(vim.cmd.colorscheme, astronvim.default_colorscheme) then
- require("astronvim.utils").notify(
- "Error setting up colorscheme: " .. astronvim.default_colorscheme,
- vim.log.levels.ERROR
- )
- end
- end
- require("astronvim.utils").conditional_func(astronvim.user_opts("polish", nil, false), true)
- require('astro').setup {
- colorscheme = {
- name = 'gruvbox',
- options = {
- variant = 'dark'
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement