Compare commits

...

6 Commits

2 changed files with 32 additions and 5 deletions

View File

@ -1,4 +1,19 @@
;;-*-coding: utf-8;-*- ;;-*-coding: utf-8;-*-
(define-abbrev-table 'mhtml-mode-abbrev-table
'(
("doc" "<!DOCTYPE html>
<html>
<head>
<meta charset=\"UTF-8\"/>
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
<title>Document</title>
</head>
<body>
</body>
</html>" nil :count 1)
("doctype" "<!DOCTYPE html>" nil :count 0)
))
(define-abbrev-table 'web-mode-abbrev-table (define-abbrev-table 'web-mode-abbrev-table
'( '(
("doc" "<!DOCTYPE html> ("doc" "<!DOCTYPE html>
@ -10,7 +25,7 @@
</head> </head>
<body> <body>
</body> </body>
</html>" nil :count 7) </html>" nil :count 9)
("doctype" "<!DOCTYPE html>" nil :count 0) ("doctype" "<!DOCTYPE html>" nil :count 1)
)) ))

View File

@ -83,6 +83,7 @@
(C . t) (C . t)
(R . t) (R . t)
(awk . t) (awk . t)
(calc . t)
(clojure . t) (clojure . t)
(go . t) (go . t)
(haskell . t) (haskell . t)
@ -92,8 +93,10 @@
(python . t) (python . t)
(rust . t) (rust . t)
(translate . t) (translate . t)
(sh . t) (shell . t)
))) )))
;; No solicitar confirmación para evaluar
(setq org-confirm-babel-evaluate nil)
) )
;; org-mode ;; org-mode
@ -192,7 +195,15 @@
(use-package org-bullets (use-package org-bullets
:defer t :defer t
:hook :hook
(org-mode . org-bullets-mode)) (org-mode . org-bullets-mode)
:config
(setq org-bullets-bullet-list '(""
""
""
""
""
""))
)
(use-package visual-fill-column (use-package visual-fill-column
:defer t :defer t
@ -287,7 +298,8 @@
;; Mostrar los caracteres ocultos de org mode al pasar con el cursor. ;; Mostrar los caracteres ocultos de org mode al pasar con el cursor.
(use-package org-appear (use-package org-appear
:defer t :defer t
:hook (org-mode . org-appear-mode)) ;; :hook (org-mode . org-appear-mode)
)
;; Polymode para org-mode ;; Polymode para org-mode
(use-package poly-org) (use-package poly-org)