Josh Bicking 7 лет назад
Родитель
Сommit
1157c19f79
1 измененных файлов с 10 добавлено и 0 удалено
  1. 10 0
      emacs.d/packages/packages.el

+ 10 - 0
emacs.d/packages/packages.el

@@ -1,5 +1,8 @@
 ;; Package installation
 
+;; TODO add "]]" or some other binding for doc-view-previous/next-page
+;; in doc-view-mode.
+
 (require 'package)
 ;; Create the package install directory if it doesn't exist
 (setq package-user-dir (format "%selpa_%s/"
@@ -598,6 +601,13 @@
   :commands esup
   :ensure t)
 
+(use-package highlight-indent-guides
+  :ensure t
+  :init
+  (add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
+  :config
+  (setq highlight-indent-guides-method 'column))
+
 ;; global-prettify-symbols doesn't play nice on Windows
 (if (not (eq system-type 'windows-nt))
     (global-prettify-symbols-mode))