maxmx03.dracula.nvim/lua/dracula/init.lua
2023-03-23 23:21:50 -03:00

18 lines
297 B
Lua

local M = {}
local theme = require('dracula.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.g.colors_name = 'dracula'
theme.set_highlights()
end
return M