33 lines
1.7 KiB
EmacsLisp
33 lines
1.7 KiB
EmacsLisp
;Record startup timestamp
|
|
|
|
;; Added by Package.el. This must come before configurations of
|
|
;; installed packages. Don't delete this line. If you don't want it,
|
|
;; just comment it out by adding a semicolon to the start of the line.
|
|
;; You may delete these explanatory comments.
|
|
(package-initialize)
|
|
|
|
(defvar super-emacs/invokation-time
|
|
(current-time))
|
|
|
|
;Load configuration files
|
|
(load-file "~/.emacs.d/super-emacs/repositories.el")
|
|
(load-file "~/.emacs.d/super-emacs/packages.el")
|
|
(load-file "~/.emacs.d/super-emacs/interface.el")
|
|
(load-file "~/.emacs.d/super-emacs/misc.el")
|
|
(load-file "~/.emacs.d/super-emacs/key-bindings.el")
|
|
(load-file "~/.emacs.d/super-emacs/file-modes.el")
|
|
(custom-set-variables
|
|
;; custom-set-variables was added by Custom.
|
|
;; If you edit it by hand, you could mess it up, so be careful.
|
|
;; Your init file should contain only one such instance.
|
|
;; If there is more than one, they won't work right.
|
|
'(package-selected-packages
|
|
(quote
|
|
(csharp-mode dired-dups swift-mode highlight-indent-guides rainbow-delimiters vue-mode multi-web-mode web-mode quack elpy importmagic py-autopep8 flycheck excorporate ivy nginx-mode helm-projectile projectile json-mode jinja2-mode company-terraform terraform-mode yaml-mode company racer rust-mode magit theme-looper myterminal-controls meta-presenter which-key dired-launch material-theme neotree undo-tree ztree buffer-move powerline ace-window ace-jump-mode multiple-cursors helm))))
|
|
(custom-set-faces
|
|
;; custom-set-faces was added by Custom.
|
|
;; If you edit it by hand, you could mess it up, so be careful.
|
|
;; Your init file should contain only one such instance.
|
|
;; If there is more than one, they won't work right.
|
|
'(default ((t (:height 120)))))
|