-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
26 lines (22 loc) · 852 Bytes
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(setq emacs-start-directory "~/.emacs.d")
;; (toggle-debug-on-error)
(let (res)
(dolist (el (directory-files-recursively (concat emacs-start-directory "/core") ".*\.el$") res)
(load-file el)))
;;(add-to-list 'package-archives '( "jcs-elpa" . "https://jcs-emacs.github.io/jcs-elpa/packages/") t)
(core/app/load-apps)
(setq spacemacs-start-directory "~/.emacs.d/spacemacs/")
(load-file (concat spacemacs-start-directory "init.el"))
(load-env-vars spacemacs-env-vars-file)
(core/app/init-apps)
(add-to-list 'yas-snippet-dirs "~/.emacs.d/snippets")
;; (yas-reload-all)
;;(switch-to-buffer "*scratch*")
;; (set-frame-parameter nil 'fullscreen 'fullboth)
;; (setq ns-command-modifier 'super)
;; (server-start)
;; (split-window-horizontally)
;; (windmove-right)
;; (switch-to-buffer "*Messages*")
;; (windmove-left)
(put 'magit-clean 'disabled nil)