63 lines
1.9 KiB
Lua
63 lines
1.9 KiB
Lua
-- Themes
|
|
--
|
|
--
|
|
|
|
return {
|
|
-- You can easily change to a different colorscheme.
|
|
-- Change the name of the colorscheme plugin below, and then
|
|
-- change the command in the config to whatever the name of that colorscheme is.
|
|
--
|
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
|
|
|
{
|
|
'bluz71/vim-moonfly-colors',
|
|
lazy = false,
|
|
priority = 1000,
|
|
config = function()
|
|
vim.cmd.syntax 'enable'
|
|
vim.g.moonflyCursorColor = true
|
|
vim.g.moonflyItalics = true
|
|
vim.g.moonflyNormalFloat = true
|
|
vim.g.moonflyTerminalColors = true
|
|
vim.g.moonflyUndercurls = true
|
|
vim.g.moonflyUnderlineMatchParen = true
|
|
vim.g.moonflyVirtualTextColor = true
|
|
|
|
vim.api.nvim_set_hl(0, 'MoltenOutputBorder', { link = 'Normal' })
|
|
vim.api.nvim_set_hl(0, 'MoltenOutputBorderFail', { link = 'MoonflyCrimson' })
|
|
vim.api.nvim_set_hl(0, 'MoltenOutputBorderSuccess', { link = 'MoonflyBlue' })
|
|
end,
|
|
},
|
|
{
|
|
-- Like many other themes, this one has different styles, and you could load
|
|
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
|
'folke/tokyonight.nvim',
|
|
priority = 1000, -- Make sure to load this before all the other start plugins.
|
|
config = function()
|
|
---@diagnostic disable-next-line: missing-fields
|
|
require('tokyonight').setup {
|
|
styles = {
|
|
comments = { italic = false }, -- Disable italics in comments
|
|
},
|
|
}
|
|
end,
|
|
},
|
|
{
|
|
'yorumicolors/yorumi.nvim',
|
|
priority = 1000, -- Make sure to load this before all the other start plugins.
|
|
config = function()
|
|
---@diagnostic disable-next-line: missing-fields
|
|
end,
|
|
},
|
|
{
|
|
'navarasu/onedark.nvim',
|
|
priority = 1000, -- make sure to load this before all the other start plugins
|
|
config = function()
|
|
require('onedark').setup {
|
|
style = 'darker',
|
|
}
|
|
end,
|
|
},
|
|
}
|
|
|