aboutsummaryrefslogtreecommitdiff
path: root/.doom.d/custom.el
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-11-27 00:27:58 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-11-27 00:27:58 +0530
commitc974f99921cb4d8eaf917f4edbff9b86c51f2a1b (patch)
tree30fc90dd44c04ecc9dc7f8bdd334d9da93579599 /.doom.d/custom.el
parent24045012e69eb4d72b7a4344bca515e53412bba0 (diff)
created somewhat custom doom theme
Diffstat (limited to '.doom.d/custom.el')
-rw-r--r--.doom.d/custom.el19
1 files changed, 13 insertions, 6 deletions
diff --git a/.doom.d/custom.el b/.doom.d/custom.el
index 86d1415..f97dc92 100644
--- a/.doom.d/custom.el
+++ b/.doom.d/custom.el
@@ -3,7 +3,8 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
- '(package-selected-packages '(lsp-mode)))
+ '(custom-safe-themes
+ '("6abe1a7563dbd6524f08e1a875415adb800e918cfb9617f9a1eb8d2ef7f5305a" default)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
@@ -11,8 +12,14 @@
;; If there is more than one, they won't work right.
)
-(defun my-web-mode-hook ()
- "Hooks for Web mode."
- (setq web-mode-markup-indent-offset 2)
-)
-(add-hook 'web-mode-hook 'my-web-mode-hook)
+(add-hook 'web-mode-hook
+ (defun my-web-mode-hook ()
+ "Hooks for Web mode."
+ (setq web-mode-markup-indent-offset 2)))
+
+(custom-set-faces!
+ '(window-divider :foreground "#9b1bed")
+ ;'(line-number :foreground "#ff0aa3")))
+ )
+; window transparency
+(add-to-list 'default-frame-alist '(alpha . 90))