Move some custom values to configuration.org

This is in preparation to remove customizations.el from this repo (so it can act as a local
settings file).
This commit is contained in:
Gergely Polonkai 2023-01-23 06:01:33 +01:00
parent fd8350162b
commit c0bed0aa14
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
2 changed files with 39 additions and 9 deletions

View File

@ -98,7 +98,8 @@
(user-full-name "Gergely Polonkai")
(user-mail-address "gergely@polonkai.eu")
(kill-read-only-ok t)
(use-dialog-box nil))
(use-dialog-box nil)
(cursor-type 'bar))
#+END_SRC
** Set up my personal keymap
@ -137,6 +138,33 @@ it as early as possible.
(setq org-directory (expand-file-name "NextCloud/orgmode" user-documents-directory))
#+END_SRC
** ~simple.el~ settings
#+begin_src emacs-lisp
(use-package simple
:ensure nil
:custom
(column-number-mode t))
#+end_src
** ~custom.el~ settings
#+begin_src emacs-lisp
(use-package custom
:ensure nil
:custom
(custom-enabled-themes '(tango-dark tango)))
#+end_src
** Default frame settings
#+begin_src emacs-lisp
(use-package frame
:ensure nil
:custom
(blink-cursor-mode t))
#+end_src
* Custom commands and functions
** Utility functions
@ -3393,7 +3421,9 @@ See previous versions of the current file.
(:map company-mode-map
("C-c j" . counsel-company)
:map company-active-map
("C-c j" . counsel-company)))
("C-c j" . counsel-company))
:custom
(counsel-find-file-ignore-regexp "\\(?:\\`\\|[/\\]\\)\\(?:[#.]\\)"))
#+end_src
** GNU Globals with Counsel

View File

@ -5,12 +5,11 @@
;; If there is more than one, they won't work right.
'(background-color "#7f7f7f")
'(background-mode dark)
'(blink-cursor-mode t)
'(column-number-mode t)
'(counsel-find-file-ignore-regexp "\\(?:\\`\\|[/\\]\\)\\(?:[#.]\\)")
'(blink-cursor-mode t nil nil "Customized with use-package frame")
'(column-number-mode t nil nil "Customized with use-package simple")
'(cursor-color "#ffd85c")
'(cursor-type 'bar)
'(custom-enabled-themes '(tango-dark tango))
'(cursor-type 'bar nil nil "Customized with use-package emacs")
'(custom-enabled-themes '(tango-dark tango) nil nil "Customized with use-package custom")
'(custom-file (concat user-emacs-directory "customizations.el"))
'(custom-safe-themes
'("84d2f9eeb3f82d619ca4bfffe5f157282f4779732f48a5ac1484d94d5ff5b279" "3c83b3676d796422704082049fc38b6966bcad960f896669dfc21a7a37a748fa" "a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" default))
@ -20,6 +19,7 @@
'(epg-gpg-program "gpg2")
'(fill-column 98)
'(foreground-color "#5c5cff")
'(gpolonkai/dark-mode t)
'(indent-tabs-mode nil)
'(indicate-empty-lines t)
'(inhibit-startup-echo-area-message (user-login-name))
@ -220,9 +220,9 @@
;; If there is more than one, they won't work right.
'(default ((t (:family "Hack" :foundry "simp" :slant normal :weight normal :height 98 :width normal))))
'(aw-leading-char-face ((t (:inherit ace-jump-face-foreground :height 2.0))))
'(hl-line ((t (:inherit nil :background "gray25"))))
'(hl-line ((t (:inherit nil :extend t :background "gray25"))))
'(outline-1 ((t (:inherit font-lock-function-name-face :overline t :weight bold :height 1.2))))
'(outline-2 ((t (:inherit font-lock-variable-name-face :overline t :weight bold :height 1.1))))
'(outline-3 ((t (:inherit font-lock-keyword-face :overline t :weight bold))))
'(trailing-whitespace ((t (:inherit nil :background "red1"))))
'(trailing-whitespace ((t (:inherit nil :background "red3"))))
'(whitespace-line ((t (:inherit nil :background "orange4")))))