2024-09-01 16:38:18 -04:00
|
|
|
return {
|
|
|
|
{
|
2024-09-23 18:42:48 -04:00
|
|
|
'folke/tokyonight.nvim',
|
2024-09-05 21:57:47 -04:00
|
|
|
priority = 1000,
|
2024-09-23 18:42:48 -04:00
|
|
|
opts = {
|
|
|
|
style = 'night',
|
|
|
|
transparent = false,
|
|
|
|
styles = {
|
|
|
|
keywords = { italic = false },
|
|
|
|
functions = { bold = true },
|
|
|
|
},
|
2025-01-05 13:04:56 -05:00
|
|
|
on_colors = function(colors)
|
|
|
|
local slightly_darker_bg_color = '#0e0e13'
|
|
|
|
local darker_bg_color = '#060609'
|
|
|
|
colors.bg_dark = darker_bg_color
|
|
|
|
colors.bg_float = darker_bg_color
|
|
|
|
colors.bg_popup = darker_bg_color
|
|
|
|
colors.bg_sidebar = slightly_darker_bg_color
|
|
|
|
colors.bg_statusline = darker_bg_color
|
|
|
|
colors.border = slightly_darker_bg_color
|
|
|
|
end,
|
2024-09-23 18:42:48 -04:00
|
|
|
},
|
|
|
|
init = function()
|
|
|
|
vim.cmd.colorscheme 'tokyonight'
|
2025-01-03 21:48:29 -05:00
|
|
|
|
|
|
|
-- makes some borders a lot easier to see with this theme's colours
|
|
|
|
vim.opt.fillchars = {
|
|
|
|
horiz = '━',
|
|
|
|
horizup = '┻',
|
|
|
|
horizdown = '┳',
|
|
|
|
vert = '┃',
|
|
|
|
vertleft = '┫',
|
|
|
|
vertright = '┣',
|
|
|
|
verthoriz = '╋',
|
|
|
|
}
|
2024-09-01 16:38:18 -04:00
|
|
|
end,
|
|
|
|
},
|
2024-09-23 18:42:48 -04:00
|
|
|
-- {
|
|
|
|
-- 'catppuccin/nvim',
|
|
|
|
-- lazy = false,
|
|
|
|
-- priority = 1000,
|
|
|
|
-- config = function()
|
|
|
|
-- require('catppuccin').setup {
|
|
|
|
-- styles = {
|
|
|
|
-- -- comments = { 'italic' },
|
|
|
|
-- functions = { 'bold' },
|
|
|
|
-- },
|
|
|
|
-- integrations = {
|
|
|
|
-- barbar = true,
|
|
|
|
-- cmp = true,
|
|
|
|
-- mason = true,
|
|
|
|
-- dashboard = true,
|
|
|
|
-- neotree = true,
|
|
|
|
-- dap = true,
|
|
|
|
-- dap_ui = true,
|
|
|
|
-- notify = true,
|
|
|
|
-- lsp_trouble = true,
|
|
|
|
-- which_key = true,
|
|
|
|
-- },
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- vim.cmd.colorscheme 'catppuccin-mocha'
|
|
|
|
-- end,
|
|
|
|
-- },
|
2024-09-01 16:38:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|