Update i3, polybar, emacs, qtile, zsh & sctipts

This commit is contained in:
Smirnov Olexandr 2021-01-02 21:48:35 +02:00
parent 8822c65b4f
commit 102aa36798
15 changed files with 152 additions and 140 deletions

View file

@ -4,3 +4,14 @@
(setq doom-theme 'doom-one)
(setq org-directory "~/org/")
(setq display-line-numbers-type t)
(defun gk-markdown-preview-buffer ()
(interactive)
(let* ((buf-this (buffer-name (current-buffer)))
(buf-html (get-buffer-create
(format "*gk-md-html (%s)*" buf-this))))
(markdown-other-window (buffer-name buf-html))
(shr-render-buffer buf-html)
(eww-mode)
(kill-buffer buf-html)))