Compare commits

..

No commits in common. "806c4c035f04979123e371e584160d2e97123fd0" and "d588a9ed2e7e948bdeabd73abe52a5015ac0c1dc" have entirely different histories.

2 changed files with 5 additions and 32 deletions

View File

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

View File

@ -83,7 +83,6 @@
(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)
@ -93,10 +92,8 @@
(python . t) (python . t)
(rust . t) (rust . t)
(translate . t) (translate . t)
(shell . t) (sh . t)
))) )))
;; No solicitar confirmación para evaluar
(setq org-confirm-babel-evaluate nil)
) )
;; org-mode ;; org-mode
@ -195,15 +192,7 @@
(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
@ -298,8 +287,7 @@
;; 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)