Compare commits

...

3 Commits

Author SHA1 Message Date
kj
aced36ad35 Refining org config. 2022-05-05 01:59:45 -04:00
kj
7b0757f128 Start emacs maximized. 2022-05-05 01:47:17 -04:00
kj
0522d5085f Show recent files on startup dashboard. 2022-05-05 01:46:16 -04:00
3 changed files with 17 additions and 12 deletions

View File

@ -184,8 +184,8 @@
(setq dashboard-startup-banner
(expand-file-name "duck-small.png" user-emacs-directory))
(setq dashboard-items '(
;;(recents . 5)
;;(projects . 5)
(recents . 10)
))
)

View File

@ -128,6 +128,7 @@
(setup-daemon))))
(message "Corriendo en modo normal."))
(add-hook 'window-setup-hook 'toggle-frame-maximized t)
(load custom-file)

View File

@ -15,7 +15,7 @@
(visual-fill-column-mode 1)
;; Configuración de fonts
(set-face-attribute (car face) nil :font "Cantarell" :weight 'regular :height (cdr face))
;; (set-face-attribute (car face) nil :font "Cantarell" :weight 'regular :height (cdr face))
;; Ensure that anything that should be fixed-pitch in Org files appears that way
(set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch)
@ -47,10 +47,13 @@
(setq org-agenda-start-with-log-mode t)
(setq org-log-done 'time)
(setq org-log-into-drawer t)
(setq org-cycle-separator-lines -1)
(setq org-cycle-separator-lines 2)
;; Identación
(org-indent-mode)
(setq org-startup-indented t)
(setq org-src-preserve-indentation nil)
(setq org-edit-src-content-indentation 0)
(setq org-src-tab-acts-natively t)
;; Palabras claves del To Do de org-mode
(setq org-todo-keywords
@ -66,12 +69,12 @@
;; Embellecer los checkbox
(add-hook 'org-mode-hook (lambda ()
"Beautify Org Checkbox Symbol"
(push '("[ ]" . "") prettify-symbols-alist)
(push '("[X]" . "" ) prettify-symbols-alist)
(push '("[-]" . "" ) prettify-symbols-alist)
(prettify-symbols-mode)))
;; (add-hook 'org-mode-hook (lambda ()
;; "Beautify Org Checkbox Symbol"
;; (push '("[ ]" . "☐") prettify-symbols-alist)
;; (push '("[X]" . "☑" ) prettify-symbols-alist)
;; (push '("[-]" . "❍" ) prettify-symbols-alist)
;; (prettify-symbols-mode)))
;; Tachar los checkbox marcados como terminados
(defface org-checkbox-done-text
@ -121,13 +124,14 @@
)
(use-package org-bullets
:defer t
:hook
(org-mode . org-bullets-mode))
(use-package visual-fill-column
:config
;; Tamaño de la columna
(setq visual-fill-column-width 150)
(setq-default visual-fill-column-width 150)
;; Centrar el texto
(setq-default visual-fill-column-center-text t)
)