Compare commits
6 Commits
d588a9ed2e
...
806c4c035f
Author | SHA1 | Date | |
---|---|---|---|
806c4c035f | |||
65e3ae4bd9 | |||
e9bc16a1a4 | |||
c90c19323b | |||
2c63d19cf4 | |||
1a4795f6e9 |
19
abbrev_defs
19
abbrev_defs
@ -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)
|
||||
))
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user