neovim-confs/lua/plex/plugins/colorscheme.lua

94 lines
2.5 KiB
Lua
Raw Permalink Normal View History

2023-09-06 00:26:45 +02:00
return {
2023-09-06 01:26:46 +02:00
{ 'rafi/neo-hybrid.vim', priority = 100, lazy = false },
{ 'rafi/awesome-vim-colorschemes', lazy = false },
2023-09-06 00:26:45 +02:00
{ 'AlexvZyl/nordic.nvim' },
{ 'folke/tokyonight.nvim', opts = { style = 'night' } },
{ 'rebelot/kanagawa.nvim' },
{ 'olimorris/onedarkpro.nvim' },
{ 'EdenEast/nightfox.nvim' },
{ 'nyoom-engineering/oxocarbon.nvim' },
{
'catppuccin/nvim',
lazy = true,
name = 'catppuccin',
opts = {
2023-09-22 13:08:16 +02:00
flavour = 'latte', -- latte, frappe, macchiato, mocha
2023-09-06 00:26:45 +02:00
dim_inactive = { enabled = false },
integrations = {
alpha = true,
cmp = true,
flash = true,
gitsigns = true,
illuminate = true,
indent_blankline = { enabled = true },
lsp_trouble = true,
markdown = true,
mason = true,
mini = true,
native_lsp = {
enabled = true,
virtual_text = {
errors = { 'italic' },
hints = { 'italic' },
warnings = { 'italic' },
information = { 'italic' },
},
underlines = {
errors = { 'undercurl' },
hints = { 'undercurl' },
warnings = { 'undercurl' },
information = { 'undercurl' },
},
inlay_hints = {
background = true,
},
},
navic = { enabled = true },
neogit = true,
neotest = true,
neotree = true,
noice = true,
notify = true,
semantic_tokens = true,
symbols_outline = true,
treesitter_context = true,
telescope = { enabled = true },
treesitter = true,
which_key = true,
},
},
},
2023-09-06 17:55:53 +02:00
{
'rebelot/kanagawa.nvim',
2023-09-22 13:08:16 +02:00
lazy = false,
2023-09-06 17:55:53 +02:00
name = 'kanagawa',
config = function()
require('kanagawa').setup({
2023-09-22 13:08:16 +02:00
compile = true, -- enable compiling the colorscheme
2023-09-06 17:55:53 +02:00
undercurl = true, -- enable undercurls
2023-09-22 13:08:16 +02:00
commentStyle = { italic = false },
2023-09-06 17:55:53 +02:00
functionStyle = {},
2023-09-22 13:08:16 +02:00
keywordStyle = { bold = true },
2023-09-06 17:55:53 +02:00
statementStyle = { bold = true },
typeStyle = {},
transparent = false, -- do not set background color
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
terminalColors = true, -- define vim.g.terminal_color_{0,17}
colors = { -- add/modify theme and palette colors
palette = {},
theme = { wave = {}, lotus = {}, dragon = {}, all = {} },
},
overrides = function(colors) -- add/modify highlights
return {}
end,
2023-09-22 13:08:16 +02:00
theme = "dragon", -- Load "wave" theme when 'background' option is not set
2023-09-06 17:55:53 +02:00
background = { -- map the value of 'background' option to a theme
2023-09-22 13:08:16 +02:00
dark = "wave", -- try "dragon" !
2023-09-06 17:55:53 +02:00
light = "lotus"
},
})
end
},
2023-09-06 00:26:45 +02:00
}