From bd755cf82e67547844e2d146cc4360ab55bbc7c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Sat, 29 Aug 2020 19:32:39 +0200 Subject: [PATCH] Uploaded MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Woźniak --- .emacs.d/init.el | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index b38f4f3..4f090f8 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -36,6 +36,35 @@ (global-set-key (kbd "C-x j") 'awesome-tab-backward-tab) (global-set-key (kbd "C-x k") 'awesome-tab-forward-tab) +;; Switch-window +(use-package switch-window + :ensure t + :config + (setq + switch-window-increase 4 + switch-window-input-style 'minibuffer + switch-window-shortcut-style 'qwerty + switch-window-threshold 2 + ) + (setq + switch-window-qwerty-shortcuts + '( "a" "s" "d" "f" "g" "h" "j" "k" "l") + ) + :bind + ([remap other-window] . switch-window) + ) + +;; reveal dependency +(use-package htmlize + :ensure t + ) +(use-package ox-reveal + :ensure t + :config + ;; maybe add auto-installer in the future + (setq org-reveal-root "https://cdn.jsdelivr.net/npm/reveal.js") +) + ;; Theme (use-package dracula-theme :ensure t