diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-28 16:42:45 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-28 16:42:45 +0000 |
commit | e2f1561fdf892954fa3daac7f17227eaf3b89139 (patch) | |
tree | 3777154407363dbdc2d4265e675e75e57c72b179 | |
parent | 9991944ed548e3171658cecd7a9886f5a6bfd21a (diff) |
installed beacon mode
-rw-r--r-- | custom-settings.el | 6 | ||||
-rw-r--r-- | init.el | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/custom-settings.el b/custom-settings.el index 8750113..a49508a 100644 --- a/custom-settings.el +++ b/custom-settings.el @@ -7,6 +7,10 @@ [default default default italic underline success warning error]) '(ansi-color-names-vector ["black" "red3" "ForestGreen" "yellow3" "blue" "magenta3" "DeepSkyBlue" "gray50"]) + '(auto-package-update-delete-old-versions t) + '(auto-package-update-hide-results t) + '(auto-package-update-interval 7) + '(auto-package-update-prompt-before-update t) '(auto-revert-verbose nil) '(company-begin-commands (quote (self-insert-command))) '(company-global-modes (quote (not shell-mode eaf-mode))) @@ -68,7 +72,7 @@ '(org-sort-agenda-notime-is-late nil) '(package-selected-packages (quote - (python-pytest password-store csv-mode expand-region org-gcal lsp-python-ms ace-window discover-my-major popup-kill-ring amx gnu-elpa-keyring-update auto-package-update monokai-theme color-theme-monokai color-theme-sanityinc-tomorrow dracula-theme evil-mode yasnippet-snippets highlight-symbol rainbow-delimiters git-gutter Ivy org-caldav which-key-mode org-plus-contrib use-package ac-cider magit blacken py-autopep8 flycheck elpy yasnippet company-lsp company lsp-ui go-autocomplete lsp-mode go-mode markdown-mode gruvbox-theme helm org cider slime evil))) + (beacon-mode python-pytest password-store csv-mode expand-region org-gcal lsp-python-ms ace-window discover-my-major popup-kill-ring amx gnu-elpa-keyring-update auto-package-update monokai-theme color-theme-monokai color-theme-sanityinc-tomorrow dracula-theme evil-mode yasnippet-snippets highlight-symbol rainbow-delimiters git-gutter Ivy org-caldav which-key-mode org-plus-contrib use-package ac-cider magit blacken py-autopep8 flycheck elpy yasnippet company-lsp company lsp-ui go-autocomplete lsp-mode go-mode markdown-mode gruvbox-theme helm org cider slime evil))) '(pdf-view-midnight-colors (quote ("#fdf4c1" . "#282828"))) '(pos-tip-background-color "#36473A") '(pos-tip-foreground-color "#FFFFC8") @@ -126,6 +126,12 @@ (setq calendar-week-start-day 1) (setq calendar-date-style (quote european)) +;; beacon mode +(use-package beacon + :config + (setq beacon-color "OrangeRed") + (beacon-mode 1)) + ;; remap M-x to something else ;; https://sites.google.com/site/steveyegge2/effective-emacs ;; (global-set-key "\C-x\C-m" 'execute-extended-command) |