From 9a3d60dee959f540a945b3dcd55e511d20d1e8fc Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 4 Jun 2018 14:02:32 +0100 Subject: [PATCH] Add module for restart-emacs package --- core/siren-modules.el | 3 +++ custom.el | 2 +- modules/misc/siren-restart-emacs.el | 13 +++++++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 modules/misc/siren-restart-emacs.el diff --git a/core/siren-modules.el b/core/siren-modules.el index 9928a34..755ce1e 100644 --- a/core/siren-modules.el +++ b/core/siren-modules.el @@ -32,6 +32,9 @@ ;; Linting (require 'siren-flycheck) +;; Misc. +(require 'siren-restart-emacs) + ;; Navigation (require 'siren-anzu) (require 'siren-avy) diff --git a/custom.el b/custom.el index 0f16b30..6a4e66c 100644 --- a/custom.el +++ b/custom.el @@ -7,7 +7,7 @@ '(magit-commit-arguments (quote ("-S"))) '(package-selected-packages (quote - (zoom-window yasnippet-snippets yari yaml-mode which-key web-mode use-package toggle-quotes thrift string-inflection smex smartparens smart-shift smart-mode-line slim-mode seeing-is-believing scss-mode sass-mode rust-playground ruby-tools ruby-refactor ruby-compilation rubocop rspec-mode robe rjsx-mode resize-window rainbow-mode racer prettier-js plantuml-mode php-mode phi-search neotree multiple-cursors move-dup markdown-mode magit-gh-pulls lua-mode linum-relative json-mode imenu-anywhere ido-vertical-mode ido-completing-read+ highlight-symbol highlight-indentation highlight-indent-guides helm-swoop helm-projectile helm-open-github helm-gtags helm-describe-modes helm-descbinds helm-ag go-projectile go-playground gitignore-mode github-browse-file gitconfig-mode git-timemachine git-link full-ack flycheck-rust flycheck-gometalinter fill-column-indicator feature-mode expand-region exec-path-from-shell evil eslintd-fix editorconfig dumb-jump doom-themes dockerfile-mode direx diminish diff-hl company-go coffee-mode cargo buffer-move browse-kill-ring anzu ace-window)))) + (zoom-window yasnippet-snippets yari yaml-mode which-key web-mode use-package toggle-quotes thrift string-inflection smex smartparens smart-shift smart-mode-line slim-mode seeing-is-believing scss-mode sass-mode rust-playground ruby-tools ruby-refactor ruby-compilation rubocop rspec-mode robe rjsx-mode restart-emacs resize-window rainbow-mode racer prettier-js plantuml-mode php-mode phi-search nlinum neotree multiple-cursors move-dup markdown-mode magit-gh-pulls lua-mode linum-relative json-mode imenu-anywhere ido-vertical-mode ido-completing-read+ hlinum highlight-symbol highlight-indentation highlight-indent-guides helm-swoop helm-projectile helm-open-github helm-gtags helm-describe-modes helm-descbinds helm-ag go-projectile go-playground gitignore-mode github-browse-file gitconfig-mode git-timemachine git-link full-ack flycheck-rust flycheck-package flycheck-gometalinter fill-column-indicator feature-mode expand-region exec-path-from-shell evil eslintd-fix editorconfig dumb-jump doom-themes dockerfile-mode direx dired-subtree diminish diff-hl company-go coffee-mode cargo buffer-move browse-kill-ring anzu airline-themes ace-window)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/modules/misc/siren-restart-emacs.el b/modules/misc/siren-restart-emacs.el new file mode 100644 index 0000000..c4668de --- /dev/null +++ b/modules/misc/siren-restart-emacs.el @@ -0,0 +1,13 @@ +;;; siren-restart-emacs.el --- jimeh's Emacs Siren: restart-emacs configuration. + +;;; Commentary: + +;; Basic configuration for restart-emacs. + +;;; Code: + +(use-package restart-emacs + :commands restart-emacs) + +(provide 'siren-restart-emacs) +;;; siren-restart-emacs.el ends here