diff options
| author | spl3g <spleefer6@yandex.ru> | 2024-10-03 17:44:36 +0300 |
|---|---|---|
| committer | spl3g <spleefer6@yandex.ru> | 2025-05-01 14:58:56 +0300 |
| commit | 3b9099e4537e039b140294157ae18b1d1b41b366 (patch) | |
| tree | 17b6da77c0b42eb3014cdb843490ebc48afcddea /home-manager/homeModules/emacs/init.el | |
| parent | 24a7b21c13165718828826634c1c3efeeea48f48 (diff) | |
feat: start moving into a new config
Diffstat (limited to 'home-manager/homeModules/emacs/init.el')
| -rw-r--r-- | home-manager/homeModules/emacs/init.el | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/home-manager/homeModules/emacs/init.el b/home-manager/homeModules/emacs/init.el index 56b4bb5..1c9b948 100644 --- a/home-manager/homeModules/emacs/init.el +++ b/home-manager/homeModules/emacs/init.el @@ -1,7 +1,12 @@ -(org-babel-load-file - (expand-file-name - "config.org" - user-emacs-directory)) +;;; Code: +;; (org-babel-load-file +;; (expand-file-name +;; "config.org" +;; user-emacs-directory)) +(load (expand-file-name + "new.el" + user-emacs-directory)) + (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. @@ -9,16 +14,19 @@ ;; If there is more than one, they won't work right. '(auth-source-save-behavior nil) '(custom-safe-themes - '("d77d6ba33442dd3121b44e20af28f1fae8eeda413b2c3d3b9f1315fbda021992" "80214de566132bf2c844b9dee3ec0599f65c5a1f2d6ff21a2c8309e6e70f9242" default)) + '("d77d6ba33442dd3121b44e20af28f1fae8eeda413b2c3d3b9f1315fbda021992" + "80214de566132bf2c844b9dee3ec0599f65c5a1f2d6ff21a2c8309e6e70f9242" default)) '(eshell-modules-list - '(eshell-alias eshell-banner eshell-basic eshell-cmpl eshell-dirs eshell-tramp eshell-extpipe eshell-glob eshell-hist eshell-ls eshell-pred eshell-prompt eshell-script eshell-term eshell-unix)) - '(package-selected-packages '(marginalia embark-consult)) - '(safe-local-variable-values '((engine . go)))) + '(eshell-alias eshell-banner eshell-basic eshell-cmpl eshell-dirs eshell-tramp + eshell-extpipe eshell-glob eshell-hist eshell-ls eshell-pred + eshell-prompt eshell-script eshell-term eshell-unix)) + '(org-agenda-files '("~/prog/js/agenda.org")) + '(package-selected-packages '(eglot marginalia embark-consult)) + '(safe-local-variable-values '((engine . go))) + '(warning-suppress-log-types '((emacs) (comp)))) (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. - ) -(put 'upcase-region 'disabled nil) -(put 'downcase-region 'disabled nil) + '(italic ((t (:slant italic))))) |
