From 5c17a7d184047365fe3d40e6a233f04f6ab9529d Mon Sep 17 00:00:00 2001 From: jgrogan Date: Fri, 31 May 2024 09:19:01 +0100 Subject: [PATCH] Add gitignore and autogen custom el. --- .gitignore | 3 ++- emacs/.emacs.d/custom.el | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 emacs/.emacs.d/custom.el diff --git a/.gitignore b/.gitignore index c0df46a..8174b00 100644 --- a/.gitignore +++ b/.gitignore @@ -48,4 +48,5 @@ flycheck_*.el # network security /network-security.data - +elpa +projectile-bookmarks.eld diff --git a/emacs/.emacs.d/custom.el b/emacs/.emacs.d/custom.el new file mode 100644 index 0000000..4ffacd1 --- /dev/null +++ b/emacs/.emacs.d/custom.el @@ -0,0 +1,13 @@ +(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. + '(package-selected-packages + '(visual-fill-column org-bullets treemacs-icons-dired treemacs-projectile treemacs-all-the-icons treemacs emms evil-collection evil magit counsel-projectile projectile markdown-mode which-key rainbow-delimiters doom-modeline doom-themes all-the-icons ivy))) +(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. + )