Update init.el.

This commit is contained in:
Mikael Capelle 2017-12-20 11:01:33 +01:00
parent 3ab9c80e1f
commit 9c5f3faa85

View File

@ -35,6 +35,7 @@
(scroll-bar-mode -1)) (scroll-bar-mode -1))
(column-number-mode t) (column-number-mode t)
(line-number-mode t) (line-number-mode t)
(desktop-save-mode t)
;; Command rebinding ;; Command rebinding
@ -74,6 +75,11 @@
(ansi-color-apply-on-region compilation-filter-start (point-max)))) (ansi-color-apply-on-region compilation-filter-start (point-max))))
(add-hook 'compilation-filter-hook 'my-colorize-compilation-buffer)) (add-hook 'compilation-filter-hook 'my-colorize-compilation-buffer))
;; Retrieve PATH from fish shell
(when (memq window-system '(mac ns x))
(setq exec-path-from-shell-shell-name "/usr/local/bin/fish")
(exec-path-from-shell-initialize))
;; Auto complete + Yasnippet ;; Auto complete + Yasnippet
(use-package sr-speedbar (use-package sr-speedbar