21 lines
915 B
EmacsLisp
21 lines
915 B
EmacsLisp
;;; custom.el --- -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2020 Colin Powell
|
|
|
|
;; Author: Colin Powell <colin@unbl.ink>
|
|
;; Keywords:
|
|
(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.
|
|
'(doom-big-font-mode t t)
|
|
'(package-selected-packages
|
|
'(openwith caddyfile-mode wordgen w3m vterm-toggle ponylang-mode jq-mode jq-format hackernews elfeed-protocol dired-ranger csv-mode csv counsel-jq blacken)))
|
|
(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 (:background "#151619")))))
|