diff options
author | Thanos Apollo <[email protected]> | 2023-03-23 07:35:57 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-03-23 07:35:57 +0200 |
commit | cabec724696cea45cce8ff85b0b80947bdc98dcf (patch) | |
tree | 78ee588145d3f6e352e8baecf201f7fedd4dba10 | |
parent | 5f072f63e621e655916982f75655172bdc866e9f (diff) |
emacs: redo settings for custom.el
-rw-r--r-- | .emacs.d/init.el | 4 | ||||
-rwxr-xr-x | emacs.org | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 8c539f3..5dfc5d8 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -90,6 +90,10 @@ Contains the list of packages that need to be installed.") (unless (package-installed-p 'use-package) (package-install 'use-package)) +;; set and load custom.el +(setq custom-file (concat user-emacs-directory "custom.el")) +(load custom-file 'noerror) + (setq inhibit-startup-message nil) ;; Transparency (set-frame-parameter (selected-frame) 'alpha '(100 100)) @@ -151,8 +151,13 @@ Set our ~package-archives~, and install our packages (unless (package-installed-p 'use-package) (package-install 'use-package)) + + ;; set and load custom.el + (setq custom-file (concat user-emacs-directory "custom.el")) + (load custom-file 'noerror) #+end_src + * UI Settings ** Basic UI Fonts and basic appearance settings |