1
0
Fork 1
Dotfiles_nvim/lua/editor/theme.lua

25 lines
623 B
Lua
Raw Normal View History

2024-12-15 05:34:42 +00:00
--local K = require('core.keymap')
2024-11-23 16:55:23 +00:00
2024-07-02 21:52:43 +00:00
return {
2024-11-23 16:55:23 +00:00
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000,
config = function()
-- Set Theme --
vim.cmd('colorscheme catppuccin')
end,
2024-12-15 05:34:42 +00:00
},--[[ --TODO: Disabled, because it Conflicts with the Session Management
2024-11-23 16:55:23 +00: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 05:34:42 +00:00
},]]--
2024-07-02 21:52:43 +00:00
}