Add DWM config

This commit is contained in:
Smirnov Olexandr 2021-01-06 17:54:15 +02:00
parent 13c6216796
commit f7c0cef79f
13 changed files with 407 additions and 131 deletions

View file

@ -1,12 +1,23 @@
(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.
'(package-selected-packages '(markdown-mode zoutline)))
(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.
)
'(package-selected-packages '(racket-mode markdown-mode zoutline)))
(custom-set-faces)
(use-package markdown-mode
:commands (markdown-mode gfm-mode)
:mode
("README.*\\.md\\'" . gfm-mode)
("\\.md\\'" . markdown-mode)
("\\.markdown\\'" . markdown-mode)
:hook
(markdown-mode . variable-pitch-mode)
(markdown-mode . yas-minor-mode)
(markdown-mode . smartparens-mode)
:custom
(markdown-command "pandoc")
(markdown-header-scaling t)
:config
(unbind-key "DEL" gfm-mode-map))

View file

@ -3,3 +3,4 @@
(package! go-autocomplete)
(package! markdown-mode)
(package! hy-mode)
(package! nim-mode)