Compile files to elc

This commit is contained in:
Maciej Szlosarczyk 2017-05-29 11:21:05 +03:00
parent 4e3bdc6352
commit bf729d6ea3
No known key found for this signature in database
GPG key ID: 0D4EEACF63D4262E
5 changed files with 23 additions and 8 deletions

View file

@ -1,7 +1,6 @@
;;; behaviour.el --- how emacs should behave
;;; Commentary:
;;; Code:
;;; Safely save garbage files into emacs.d
;;;;;;;;;;;;;;;;;;;;;;;; Overall behaviour ;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq backup-directory-alist
@ -151,6 +150,8 @@
;; Show projectile lists by most recently active
(setq projectile-sort-order (quote recently-active))
;; (add-hook 'projectile-find-file-hook 'projectile-invalidate-cache)
; Use VIM mode
(require 'evil)
(require 'evil-leader)
@ -196,7 +197,4 @@ You can disable `clean-buffer-list' by (cancel-timer clean-buffer-list-timer)."
(setq clean-buffer-list-kill-never-regexps
(append '("^\\*EMMS Playlist\\*.*$")
clean-buffer-list-kill-never-regexps-init))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Additional loads ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(load "~/.emacs.d/languages.el")
;;; behaviour.el ends here