local M = {} local theme = require('rxyhn.theme') M.setup = function() vim.cmd('hi clear') vim.o.background = 'dark' if vim.fn.exists('syntax_on') then vim.cmd('syntax reset') end vim.o.termguicolors = true vim.colors_name = 'b46-rxyhn' theme.set_highlights() end return M