mirror of https://github.com/gabehf/nvim-conf.git
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.
19 lines
471 B
19 lines
471 B
return {
|
|
{
|
|
"scottmckendry/cyberdream.nvim",
|
|
lazy = false,
|
|
priority = 1000,
|
|
config = function()
|
|
require("cyberdream").setup {
|
|
-- Recommended - see "Configuring" below for more config options
|
|
transparent = true,
|
|
italic_comments = true,
|
|
hide_fillchars = true,
|
|
-- borderless_telescope = true,
|
|
terminal_colors = true,
|
|
}
|
|
vim.cmd "colorscheme cyberdream" -- set the colorscheme
|
|
end,
|
|
},
|
|
}
|