From 4aafaa442edad28817ffa03e389613e8d1ce7ec3 Mon Sep 17 00:00:00 2001 From: John Doty Date: Tue, 18 Feb 2020 06:41:57 -0800 Subject: [PATCH] esup, speed? --- .emacs.d/custom.el | 2 +- .emacs.d/init.el | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.emacs.d/custom.el b/.emacs.d/custom.el index afe5d55..552a600 100644 --- a/.emacs.d/custom.el +++ b/.emacs.d/custom.el @@ -61,7 +61,7 @@ ((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED")))) '(package-selected-packages (quote - (gnu-elpa-keyring-update xah-lookup lsp-hack hack-mode rust-mode filladapt vc-hgcmd lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode zencoding-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide ahg elm-mode monky))) + (esup gnu-elpa-keyring-update xah-lookup lsp-hack hack-mode rust-mode filladapt vc-hgcmd lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode zencoding-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide ahg elm-mode monky))) '(reb-re-syntax (quote string)) '(rmail-mail-new-frame t) '(safe-local-variable-values diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 170df63..21436b0 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -102,20 +102,20 @@ (package-initialize) (unless package-archive-contents - (package-refresh-contents)) -(package-install-selected-packages) + (package-refresh-contents) + (package-install-selected-packages)) ;; ================================================================= ;; Common stuff that's needed once ;; ================================================================= (require 'cl) -(require 'saveplace) -(require 'ffap) -(require 'uniquify) +(require 'saveplace) ;; Am I using this? +(require 'ffap) ;; Am I using this? +(require 'uniquify) ;; Unique buffers based on file name. (require 'ansi-color) -(require 'recentf) -(require '50-arc) +(when is-fb-environment + (require '50-arc)) (prefer-coding-system 'utf-8)