Dotfiles_nvim/lua/editor/theme.lua

25 lines
623 B
Lua
Raw Normal View History

2024-12-15 06:34:42 +01:00
--local K = require('core.keymap')
2024-11-23 17:55:23 +01:00
2024-07-02 23:52:43 +02:00
return {
2024-11-23 17:55:23 +01:00
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000,
config = function()
-- Set Theme --
vim.cmd('colorscheme catppuccin')
end,
2024-12-15 06:34:42 +01:00
},--[[ --TODO: Disabled, because it Conflicts with the Session Management
2024-11-23 17:55:23 +01:00
{
'sunjon/shade.nvim',
opts = {
overlay_opacity = 70,
opacity_step = 5,
keys = {
brightness_up = K.FOCUS_SHADE.UP.shortcut,
brightness_down = K.FOCUS_SHADE.DOWN.shortcut,
},
},
2024-12-15 06:34:42 +01:00
},]]--
2024-07-02 23:52:43 +02:00
}