diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-07-03 21:02:12 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-07-03 21:02:12 +0100 |
commit | 3fbaf487183e7b7e3785628ab8ed6290ddd94fd7 (patch) | |
tree | 10c7e584e5b1e054dea84dd4d8fa8c397f0a1519 /emacs-prelude/personal/custom.el | |
parent | b5e8c2052c43e9865aad35380ff0b36cabae19d2 (diff) | |
download | dotfiles-3fbaf487183e7b7e3785628ab8ed6290ddd94fd7.tar.gz |
Update emacs prelude config
Diffstat (limited to 'emacs-prelude/personal/custom.el')
-rw-r--r-- | emacs-prelude/personal/custom.el | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/emacs-prelude/personal/custom.el b/emacs-prelude/personal/custom.el index 5a298bd..772749a 100644 --- a/emacs-prelude/personal/custom.el +++ b/emacs-prelude/personal/custom.el @@ -3,12 +3,20 @@ ;; 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. - '(org-agenda-files '("~/foo.org")) + '(cider-xref-actions + '(("find-def" . cider--find-var) + ("display-doc" . cider-doc-lookup) + ("lookup-on-clojuredocs" . cider-clojuredocs-lookup))) + '(company-quickhelp-color-background "#4F4F4F") + '(company-quickhelp-color-foreground "#DCDCCC") + '(org-agenda-files nil) '(package-selected-packages - '(hydra helm-projectile counsel-projectile ivy-hydra easy-kill-extras paredit-functions eval-expr lsp clj-refactor flycheck-clj-kondo yasnippet paredit dashboard doom-modeline minions all-the-icons helm emacs-dashboard company-quickhelp company-box company-prescient ivy-prescient yaml-mode web-mode lsp-ui lsp-mode json-mode js2-mode rainbow-mode elisp-slime-nav cider clojure-mode rainbow-delimiters company counsel swiper ivy exec-path-from-shell zop-to-char zenburn-theme which-key volatile-highlights undo-tree super-save smartrep smartparens operate-on-number nlinum move-text magit projectile imenu-anywhere hl-todo guru-mode gitignore-mode gitconfig-mode git-timemachine gist flycheck expand-region epl editorconfig easy-kill diminish diff-hl discover-my-major crux browse-kill-ring anzu ag ace-window))) + '(solarized-theme flycheck-indicator simple-modeline miniedit smart-mode-line ivy-rich prelude subword-mode smartparens-mode projectile-mode prelude-mode rg f equake forge vterm dash magit-section markdown-mode popup s transient envrc hydra counsel-projectile ivy-hydra easy-kill-extras paredit-functions eval-expr lsp clj-refactor flycheck-clj-kondo yasnippet paredit dashboard emacs-dashboard company-quickhelp company-box company-prescient ivy-prescient yaml-mode web-mode lsp-ui lsp-mode json-mode js2-mode rainbow-mode elisp-slime-nav cider clojure-mode rainbow-delimiters company counsel swiper ivy exec-path-from-shell zop-to-char zenburn-theme which-key volatile-highlights undo-tree super-save smartrep smartparens operate-on-number nlinum move-text magit projectile imenu-anywhere hl-todo guru-mode gitignore-mode gitconfig-mode git-timemachine gist flycheck expand-region epl editorconfig easy-kill diminish diff-hl discover-my-major crux browse-kill-ring anzu ag ace-window)) + '(pdf-view-midnight-colors '("#DCDCCC" . "#383838"))) (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. - '(aw-leading-char-face ((t (:foreground "white" :background "red" :weight bold :height 2.5 :box (:line-width 10 :color "red")))))) + '(aw-leading-char-face ((t (:foreground "white" :background "red" :weight bold :height 2.5 :box (:line-width 10 :color "red"))))) + '(hi-yellow ((t (:background "yellow"))))) |