Various things

- Disable local file loading for now until I have a solution for the
  DBus problem

- Emacs daemon implicitly starts server
This commit is contained in:
Vincent Ambo 2014-02-04 23:48:29 +01:00
parent 05d10fae2a
commit bdbc18d285
3 changed files with 8 additions and 8 deletions

11
init.el
View file

@ -72,6 +72,10 @@
;; Is this being used by a vim user?
(setq is-vim-mode nil)
;; What's the home folder?
(defvar home-dir)
(setq home-dir (expand-file-name "~"))
(when is-vim-mode
(dolist (p evil-pkgs)
(when (not (package-installed-p p))
@ -94,11 +98,11 @@
(load custom-file)
;; A file with machine specific settings.
(load-file-if-exists "~/.emacs.d/init-local.el")
;(load-file-if-exists (concat home-dir "/.emacs.d/init-local.el"))
;; IRC configuration
;; Actual servers and such are loaded from irc.el
(load-file-if-exists "~/.emacs.d/init-irc.el")
; (load-file-if-exists (concat home-dir "/.emacs.d/init-irc.el"))
;; Load magnars' string manipulation library
(require 's)
@ -107,4 +111,5 @@
(random t)
;; Start server for emacsclient
(server-start)
;; (server-start)