diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-19 11:46:24 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-19 11:46:24 +0000 |
commit | ac336f81afa03bfc564a1bdfea1342e8634ce712 (patch) | |
tree | fea4bcfdcb008829b1fd5a636873b5d74cd41c90 /custom.el | |
parent | 08053502a9b68accc972e237b9db5ca85356d269 (diff) |
added custom.el file for customize settings
Diffstat (limited to 'custom.el')
-rw-r--r-- | custom.el | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/custom.el b/custom.el new file mode 100644 index 0000000..39fa61d --- /dev/null +++ b/custom.el @@ -0,0 +1,19 @@ +(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. + '(company-show-quick-access t nil nil "Customized with use-package company") + '(custom-safe-themes + '("3d2e532b010eeb2f5e09c79f0b3a277bfc268ca91a59cdda7ffd056b868a03bc" default)) + '(display-line-numbers-type 'relative t) + '(display-time-mode t) + '(package-selected-packages + '(unicode-fonts deft cider org-roam org yasnippet-snippets which-key vterm use-package rainbow-delimiters pdf-tools paredit notmuch magit ledger-mode gruvbox-theme flycheck expand-region evil elpy elfeed-score diminish counsel cmake-mode browse-kill-ring beacon auto-package-update amx ace-window ace-jump-mode)) + '(tool-bar-mode nil)) +(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 "Liberation Mono" :foundry "1ASC" :slant normal :weight normal :height 113 :width normal))))) |