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

24 lines
623 B
Lua

--local K = require('core.keymap')
return {
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000,
config = function()
-- Set Theme --
vim.cmd('colorscheme catppuccin')
end,
},--[[ --TODO: Disabled, because it Conflicts with the Session Management
{
'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,
},
},
},]]--
}