aboutsummaryrefslogtreecommitdiff
path: root/.doom.d/custom.el
blob: d1fb65e1cf5e4d4bff8c0fa237a548c83f178265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
(custom-set-variables
 ;; custom-set-variables was added by Custom.
 ;; 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.
 '(custom-safe-themes
   '("6abe1a7563dbd6524f08e1a875415adb800e918cfb9617f9a1eb8d2ef7f5305a" default))
 '(magit-todos-insert-after '(bottom) nil nil "Changed by setter of obsolete option `magit-todos-insert-at'")
 '(warning-suppress-log-types '((doom-first-file-hook) (defvaralias))))
(custom-set-faces
 ;; custom-set-faces was added by Custom.
 ;; 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.
 '(line-number ((t (:slant normal))))
 '(line-number-current-line ((t (:slant normal)))))

(add-hook 'go-mode-hook
  (defun my-go-mode-hook ()
    (add-hook 'before-save-hook 'gofmt-before-save)
    (setq tab-width 2 indent-tabs-mode 0)))

(add-hook 'dart-mode-hook 
  (defun my-go-mode-hook ()
    (setq tab-width 2 indent-tabs-mode 0)))

(add-hook 'web-mode-hook
  (defun my-web-mode-hook ()
    (setq web-mode-markup-indent-offset 2)))

(custom-set-faces!
  '(line-number :slant normal)
  '(line-number-current-line :slant normal))

; window transparency
(add-to-list 'default-frame-alist '(alpha . 80))

;; dashboard config

; anime splash image
(setq fancy-splash-image "/home/zt/hdd/Pictures/.emacs-header.png")

; dashboard footer
(add-hook! '+doom-dashboard-functions :prepend
  (insert (+doom-dashboard--center +doom-dashboard--width "Welcome back, VidhuKant!") "\n\n\n"))

; delete some menu items
(assoc-delete-all "Open org-agenda" +doom-dashboard-menu-sections)
(assoc-delete-all "Jump to bookmark" +doom-dashboard-menu-sections)
(assoc-delete-all "Open documentation" +doom-dashboard-menu-sections)
(assoc-delete-all "Open private configuration" +doom-dashboard-menu-sections)