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).
Este commit está contenido en:
@@ -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
|
||||
|
Referencia en una nueva incidencia
Block a user