Compare commits

...

6 Commits

2 changed files with 32 additions and 5 deletions

View File

@ -1,4 +1,19 @@
;;-*-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
'(
("doc" "<!DOCTYPE html>
@ -10,7 +25,7 @@
</head>
<body>
</body>
</html>" nil :count 7)
("doctype" "<!DOCTYPE html>" nil :count 0)
</html>" nil :count 9)
("doctype" "<!DOCTYPE html>" nil :count 1)
))

View File

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