diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2019-09-14 18:09:53 -0500 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2020-04-12 17:07:25 -0500 |
commit | cb56e48805ae897d9fab5a269adbb817fdf42223 (patch) | |
tree | c73cb420d0d1cf73886a4ad4deb5a77a3bcfd8eb /emacs/.emacs.d/custom.el | |
parent | ffef92f12b3b0273c0a652459573d64d3d586e6e (diff) |
emacs: major rewrite of config
Diffstat (limited to 'emacs/.emacs.d/custom.el')
-rw-r--r-- | emacs/.emacs.d/custom.el | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/emacs/.emacs.d/custom.el b/emacs/.emacs.d/custom.el new file mode 100644 index 0000000..127a759 --- /dev/null +++ b/emacs/.emacs.d/custom.el @@ -0,0 +1,22 @@ +(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. + '(custom-enabled-themes (quote (dracula))) + '(custom-safe-themes + (quote + ("63df625509cec7b2b7deba1d48ef07ffbee99c735a95d130ad9d1fc3df8b9a34" "55c2069e99ea18e4751bd5331b245a2752a808e91e09ccec16eb25dadbe06354" "5f1bd7f67dc1598977e69c6a0aed3c926f49581fdf395a6246f9bc1df86cb030" "6731049cee8f7cbd542d7b3e1c551f3fab716a92119bd7c77f0bd1ef20849fb8" "28caf31770f88ffaac6363acfda5627019cac57ea252ceb2d41d98df6d87e240" "947190b4f17f78c39b0ab1ea95b1e6097cc9202d55c73a702395fc817f899393" "35b0b0e531731e270708ddb342dc2e576a31fb298dcbc56a206596a43afac54f" "274fa62b00d732d093fc3f120aca1b31a6bb484492f31081c1814a858e25c72e" default))) + '(package-selected-packages + (quote + (doom-themes counsel-projectile ivy slime neotree magit all-the-icons centaur-tabs company-quickhelp lsp-ui yasnippet typescript-mode company-lsp company-posframe company-c-headers telephone-line dracula-theme evil use-package)))) + +(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 (:family "Iosevka Term Slab" :foundry "CYEL" :slant normal :weight light :height 128 :width normal)))) + '(hl-line ((t (:background "gray8")))) + '(line-number ((t (:inherit (shadow default) :background "gray16")))) + '(line-number-current-line ((t (:inherit line-number :background "gray20" :foreground "dark orange" :slant italic))))) |