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

25 lines
546 B
Lua
Raw Normal View History

2024-11-23 16:55:23 +00:00
local K = require('core.keymap')
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,
},
{
'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-07-02 21:52:43 +00:00
}