|  |  | 
 |  |  |   (cond ((eq system-type 'windows-nt)
 | 
 |  |  |          (add-to-list 'exec-path "C:/msys64/usr/bin")
 | 
 |  |  |          (add-to-list 'exec-path "C:/msys64/mingw64/bin")
 | 
 |  |  |          (add-to-list 'exec-path "c:/Program Files/gnuplot")
 | 
 |  |  |          (add-to-list 'exec-path "C:/Program Files/gnuplot")
 | 
 |  |  |          (setenv "PATH" (mapconcat #'identity exec-path path-separator)))
 | 
 |  |  |         ((eq system-type 'darwin)
 | 
 |  |  |          (use-package exec-path-from-shell
 | 
 |  |  | 
 |  |  |     (minimap-mode))
 | 
 |  |  | #+END_SRC
 | 
 |  |  | 
 | 
 |  |  | ** Highlight indentation
 | 
 |  |  | Vertical demarcations for indent levels
 | 
 |  |  | #+BEGIN_SRC emacs-lisp
 | 
 |  |  |   (use-package highlight-indentation
 | 
 |  |  |     :ensure t
 | 
 |  |  |     :hook (prog-mode . highlight-indentation-mode))
 | 
 |  |  | #+END_SRC
 | 
 |  |  | * Mode line tweaks
 | 
 |  |  | Diminish is used but is included in init.el such that it can be used throughout this document
 | 
 |  |  | ** Spaceline
 |