Compare commits
No commits in common. "ee4c9c351f73749d3cd8aa57f0c979ab51352ebd" and "cf49ec2618f5ee6da7f007684593fdec539820a1" have entirely different histories.
ee4c9c351f
...
cf49ec2618
@ -28,11 +28,9 @@
|
|||||||
:straight t
|
:straight t
|
||||||
:hook (after-init . dashboard-setup-startup-hook)
|
:hook (after-init . dashboard-setup-startup-hook)
|
||||||
:config
|
:config
|
||||||
(setq dashboard-set-file-icons t
|
(setq dashboard-set-file-icons t)
|
||||||
dashboard-set-heading-icons t
|
(setq dashboard-set-heading-icons t)
|
||||||
dashboard-set-file-icons t
|
(setq dashboard-set-file-icons t)
|
||||||
dashboard-week-agenda nil
|
|
||||||
dashboard-agenda-time-string-format "%Y-%m-%d %H:%M")
|
|
||||||
(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 '(
|
||||||
|
@ -20,10 +20,9 @@
|
|||||||
lsp-format-buffer
|
lsp-format-buffer
|
||||||
lsp-organize-imports
|
lsp-organize-imports
|
||||||
lsp-install-server)
|
lsp-install-server)
|
||||||
:hook ((prog-mode . (lambda ()
|
:hook ((markdown-mode . lsp-deferred)
|
||||||
(unless (derived-mode-p 'emacs-lisp-mode 'lisp-mode 'makefile-mode)
|
(js-mode . lsp-deferred)
|
||||||
(lsp-deferred))))
|
(php-mode . lsp-deferred)
|
||||||
(markdown-mode . lsp-deferred)
|
|
||||||
(lsp-mode . lsp-enable-which-key-integration))
|
(lsp-mode . lsp-enable-which-key-integration))
|
||||||
:custom
|
:custom
|
||||||
(lsp-headerline-breadcrumb-enable nil)
|
(lsp-headerline-breadcrumb-enable nil)
|
||||||
@ -40,11 +39,9 @@
|
|||||||
lsp-enable-symbol-highlighting nil
|
lsp-enable-symbol-highlighting nil
|
||||||
lsp-enable-text-document-color nil
|
lsp-enable-text-document-color nil
|
||||||
lsp-lens-enable nil
|
lsp-lens-enable nil
|
||||||
lsp-auto-guess-root t
|
|
||||||
|
|
||||||
lsp-log-io nil
|
lsp-log-io nil
|
||||||
lsp-idle-delay 0.5
|
lsp-idle-delay 1
|
||||||
lsp-diagnostic-package :none ; Evitar que lsp conecte con flycheck para evitar que se congele
|
|
||||||
|
|
||||||
lsp-enable-indentation nil
|
lsp-enable-indentation nil
|
||||||
lsp-enable-on-type-formatting nil)
|
lsp-enable-on-type-formatting nil)
|
||||||
|
@ -110,7 +110,7 @@
|
|||||||
(advice-add 'org-refile :after 'org-save-all-org-buffers)
|
(advice-add 'org-refile :after 'org-save-all-org-buffers)
|
||||||
|
|
||||||
(setq org-capture-templates
|
(setq org-capture-templates
|
||||||
`(("t" "Tareas")
|
`(("t" "Tareas / Projectos")
|
||||||
("tt" "Tareas" entry (file+olp "~/Documentos/ORG/Agenda/Tareas.org")
|
("tt" "Tareas" entry (file+olp "~/Documentos/ORG/Agenda/Tareas.org")
|
||||||
"* TODO %? \n %a\n %i" :empty-lines 1)
|
"* TODO %? \n %a\n %i" :empty-lines 1)
|
||||||
("i" "Ideas")
|
("i" "Ideas")
|
||||||
@ -164,10 +164,5 @@
|
|||||||
org-roam-ui-update-on-save t
|
org-roam-ui-update-on-save t
|
||||||
org-roam-ui-open-on-start t))
|
org-roam-ui-open-on-start t))
|
||||||
|
|
||||||
(use-package org-autolist
|
|
||||||
:straight t
|
|
||||||
:ensure t
|
|
||||||
:hook (org-mode . org-autolist-mode))
|
|
||||||
|
|
||||||
(provide 'base-org)
|
(provide 'base-org)
|
||||||
;;; base-org.el ends here
|
;;; base-org.el ends here
|
||||||
|
Loading…
Reference in New Issue
Block a user