-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuserConfig.el
48 lines (38 loc) · 1.2 KB
/
userConfig.el
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
(setq user-full-name "Shom Bandopadhaya"
user-mail-address "shom@bandopadhaya.com")
;; Optional packages
;; (load (concat user-emacs-directory "modules/mailConfig.el"))
;; (load (concat user-emacs-directory "modules/guileConfig.el"))
(load (concat user-emacs-directory "modules/ox-hugoConfig.el"))
(load (concat user-emacs-directory "modules/flycheckConfig.el"))
(load (concat user-emacs-directory "modules/useful-anchors.el"))
;;yasnippet_begin
(use-package yasnippet
:straight t
:config
(setq yas-snippet-dirs '("~/.emacs/.custom/snippets"))
(setq warning-suppress-types (cons 'warning-suppress-types '(yasnippet backquote-change)))
:config
(yas-global-mode 1)
(yas-reload-all))
;;yasnippet_end
(use-package yaml-mode
:straight t)
(use-package nov
:straight t
:config (add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode)))
(use-package markdown-mode
:straight t)
(use-package nix-mode
:straight t)
(use-package avy
:straight t
:config
(global-set-key (kbd "C-:") 'avy-goto-char-timer)
(setq avy-timeout-seconds .5))
(use-package 0x0
:straight t)
(use-package olivetti
:straight t)
(straight-use-package
'(project-butler :type git :host codeberg :repo "jabbo/project-butler"))