mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
Add DWM config
This commit is contained in:
parent
13c6216796
commit
f7c0cef79f
13 changed files with 407 additions and 131 deletions
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -3,3 +3,4 @@
|
|||
(package! go-autocomplete)
|
||||
(package! markdown-mode)
|
||||
(package! hy-mode)
|
||||
(package! nim-mode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue