|
local M = { "folke/tokyonight.nvim" }
|
|
|
|
M.priority = 1000
|
|
|
|
local opts = {
|
|
style = "night",
|
|
transparent = true,
|
|
on_highlights = function(hl, _)
|
|
hl.CurSearch = nil
|
|
end
|
|
}
|
|
|
|
M.config = function()
|
|
require('tokyonight').setup(opts)
|
|
vim.cmd("colorscheme tokyonight")
|
|
end
|
|
|
|
return M
|