Compare commits
No commits in common. "aced36ad35d85131d63376194541e52d4f73e537" and "0e48c679efa430245b93e267ac54a0a83d912933" have entirely different histories.
aced36ad35
...
0e48c679ef
@ -184,8 +184,8 @@
|
|||||||
(setq dashboard-startup-banner
|
(setq dashboard-startup-banner
|
||||||
(expand-file-name "duck-small.png" user-emacs-directory))
|
(expand-file-name "duck-small.png" user-emacs-directory))
|
||||||
(setq dashboard-items '(
|
(setq dashboard-items '(
|
||||||
|
;;(recents . 5)
|
||||||
;;(projects . 5)
|
;;(projects . 5)
|
||||||
(recents . 10)
|
|
||||||
))
|
))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -128,7 +128,6 @@
|
|||||||
(setup-daemon))))
|
(setup-daemon))))
|
||||||
(message "Corriendo en modo normal."))
|
(message "Corriendo en modo normal."))
|
||||||
|
|
||||||
(add-hook 'window-setup-hook 'toggle-frame-maximized t)
|
|
||||||
|
|
||||||
(load custom-file)
|
(load custom-file)
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
(visual-fill-column-mode 1)
|
(visual-fill-column-mode 1)
|
||||||
|
|
||||||
;; Configuración de fonts
|
;; 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
|
;; 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)
|
(set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch)
|
||||||
@ -47,13 +47,10 @@
|
|||||||
(setq org-agenda-start-with-log-mode t)
|
(setq org-agenda-start-with-log-mode t)
|
||||||
(setq org-log-done 'time)
|
(setq org-log-done 'time)
|
||||||
(setq org-log-into-drawer t)
|
(setq org-log-into-drawer t)
|
||||||
(setq org-cycle-separator-lines 2)
|
(setq org-cycle-separator-lines -1)
|
||||||
|
|
||||||
;; Identación
|
;; Identación
|
||||||
(setq org-startup-indented t)
|
(org-indent-mode)
|
||||||
(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
|
;; Palabras claves del To Do de org-mode
|
||||||
(setq org-todo-keywords
|
(setq org-todo-keywords
|
||||||
@ -69,12 +66,12 @@
|
|||||||
|
|
||||||
|
|
||||||
;; Embellecer los checkbox
|
;; Embellecer los checkbox
|
||||||
;; (add-hook 'org-mode-hook (lambda ()
|
(add-hook 'org-mode-hook (lambda ()
|
||||||
;; "Beautify Org Checkbox Symbol"
|
"Beautify Org Checkbox Symbol"
|
||||||
;; (push '("[ ]" . "☐") prettify-symbols-alist)
|
(push '("[ ]" . "☐") prettify-symbols-alist)
|
||||||
;; (push '("[X]" . "☑" ) prettify-symbols-alist)
|
(push '("[X]" . "☑" ) prettify-symbols-alist)
|
||||||
;; (push '("[-]" . "❍" ) prettify-symbols-alist)
|
(push '("[-]" . "❍" ) prettify-symbols-alist)
|
||||||
;; (prettify-symbols-mode)))
|
(prettify-symbols-mode)))
|
||||||
|
|
||||||
;; Tachar los checkbox marcados como terminados
|
;; Tachar los checkbox marcados como terminados
|
||||||
(defface org-checkbox-done-text
|
(defface org-checkbox-done-text
|
||||||
@ -124,14 +121,13 @@
|
|||||||
)
|
)
|
||||||
|
|
||||||
(use-package org-bullets
|
(use-package org-bullets
|
||||||
:defer t
|
|
||||||
:hook
|
:hook
|
||||||
(org-mode . org-bullets-mode))
|
(org-mode . org-bullets-mode))
|
||||||
|
|
||||||
(use-package visual-fill-column
|
(use-package visual-fill-column
|
||||||
:config
|
:config
|
||||||
;; Tamaño de la columna
|
;; Tamaño de la columna
|
||||||
(setq-default visual-fill-column-width 150)
|
(setq visual-fill-column-width 150)
|
||||||
;; Centrar el texto
|
;; Centrar el texto
|
||||||
(setq-default visual-fill-column-center-text t)
|
(setq-default visual-fill-column-center-text t)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user