This commit is contained in:
John Doty 2021-08-18 20:50:32 -07:00
parent 90772c2c0b
commit b213bf8fe3
4 changed files with 585 additions and 179 deletions

View file

@ -213,7 +213,7 @@
(width . 91)
(height . ,jd-frame-height)))
(use-package modus-operandi-theme :ensure)))
(use-package modus-themes :ensure)))
;; =================================================================
;; FUN WITH KEY BINDINGS! YAAAAYYY!!!
@ -975,4 +975,23 @@
(use-package pico8-mode
:mode (("\\.p8\\'" . pico8-mode)))
;; ================================================================
;; Ink
;; ================================================================
(defun my-ink-mode-hook ()
"My hook for ink mode."
(flymake-mode)
(flycheck-mode 0)
(turn-off-auto-fill)
(setq truncate-lines nil)
(visual-line-mode))
(use-package ink-mode :ensure t
:mode (("\\.ink\\'" . ink-mode))
:bind (("M-." . ink-follow-link-at-point)
("C-c ! n" . flymake-goto-next-error))
:config
(add-hook 'ink-mode-hook 'my-ink-mode-hook))
;;; init.el ends here