feat: theming

This commit is contained in:
2025-12-22 21:21:27 +00:00
parent a12d020a03
commit a05541c689
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,3 @@
# Dynamic theme colors
config-file = ?"~/.config/omarchy/current/theme/ghostty.conf"
# Font
font-family = "JetBrainsMono Nerd Font"
font-style = Regular
@@ -30,5 +27,7 @@ keybind = super+control+shift+alt+arrow_up=resize_split:up,100
keybind = super+control+shift+alt+arrow_left=resize_split:left,100
keybind = super+control+shift+alt+arrow_right=resize_split:right,100
theme = Catppuccin Mocha
# Slowdown mouse scrolling
mouse-scroll-multiplier = 0.95

View File

@@ -7,6 +7,7 @@ return {
config = function()
require('catppuccin').setup {
transparent = true,
flavour = 'mocha',
}
vim.cmd.colorscheme 'catppuccin'
end,