diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-25 21:20:33 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-25 21:20:33 +0530 |
commit | b70dd5e00538576bb1e67b864e43e50422f14cea (patch) | |
tree | fa09b61ae177833cc768025494a59fbb57e3107a /.config/doom/config.el | |
parent | 03cc1d4ebdaf2f276c61f1f2b7eef33f52de7f32 (diff) |
themed emacs with catppuccin, added transparency
Diffstat (limited to '.config/doom/config.el')
-rw-r--r-- | .config/doom/config.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.config/doom/config.el b/.config/doom/config.el index 2388d3b..00502ef 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -35,7 +35,12 @@ (setq doom-font "Source Code Pro:size=16") -(setq doom-theme 'doom-one) +;(setq doom-theme 'doom-one) +(setq doom-theme 'catppuccin) + +; transparent background +(set-frame-parameter nil 'alpha-background 85) +(add-to-list 'default-frame-alist '(alpha-background . 85)) ;; This determines the style of line numbers in effect. If set to `nil', line ;; numbers are disabled. For relative line numbers, set this to `relative'. |