Update README.md
This commit is contained in:
18
README.md
18
README.md
@@ -1860,11 +1860,10 @@ These modes are optional and can be added selectively to `~/.emacs.d/post-init.e
|
|||||||
:commands (gitattributes-mode
|
:commands (gitattributes-mode
|
||||||
gitconfig-mode
|
gitconfig-mode
|
||||||
gitignore-mode)
|
gitignore-mode)
|
||||||
:mode
|
:mode (("/.gitconfig\\'" . gitconfig-mode)
|
||||||
("/.gitconfig\\'" . gitconfig-mode)
|
("/.gitignore\\'" . gitignore-mode)
|
||||||
("/.gitignore\\'" . gitignore-mode)
|
("/.gitignore_global\\'" . gitignore-mode)
|
||||||
("/.gitignore_global\\'" . gitignore-mode)
|
("/.gitattributes\\'" . gitattributes-mode)))
|
||||||
("/.gitattributes\\'" . gitattributes-mode))
|
|
||||||
|
|
||||||
;; Support for YAML files.
|
;; Support for YAML files.
|
||||||
;;
|
;;
|
||||||
@@ -1907,13 +1906,14 @@ These modes are optional and can be added selectively to `~/.emacs.d/post-init.e
|
|||||||
;; and a set of recognized field separators.
|
;; and a set of recognized field separators.
|
||||||
(use-package csv-mode
|
(use-package csv-mode
|
||||||
:commands (csv-mode
|
:commands (csv-mode
|
||||||
csv-align-mode)
|
csv-align-mode
|
||||||
|
csv-guess-set-separator)
|
||||||
:mode ("\\.csv\\'" . csv-mode)
|
:mode ("\\.csv\\'" . csv-mode)
|
||||||
:hook ((csv-mode . csv-align-mode)
|
:hook ((csv-mode . csv-align-mode)
|
||||||
(csv-mode . csv-guess-set-separator))
|
(csv-mode . csv-guess-set-separator))
|
||||||
:custom
|
:custom
|
||||||
(csv-align-max-width 100)
|
(csv-align-max-width 100)
|
||||||
(csv-separators '("," ";" " " "|" "\t"))
|
(csv-separators '("," ";" " " "|" "\t")))
|
||||||
|
|
||||||
;; Support for Go
|
;; Support for Go
|
||||||
;;
|
;;
|
||||||
@@ -1932,12 +1932,12 @@ These modes are optional and can be added selectively to `~/.emacs.d/post-init.e
|
|||||||
;; Major mode for editing crontab files
|
;; Major mode for editing crontab files
|
||||||
(use-package crontab-mode
|
(use-package crontab-mode
|
||||||
:commands crontab-mode
|
:commands crontab-mode
|
||||||
:mode ("/crontab\\(\\.X*[[:alnum:]]+\\)?\\'" . crontab-mode))
|
:mode ("/crontab\\(\\.X*[[:alnum:]]+\\)?\\'" . crontab-mode))
|
||||||
|
|
||||||
;; Major mode for editing Nginx configuration files
|
;; Major mode for editing Nginx configuration files
|
||||||
(use-package nginx-mode
|
(use-package nginx-mode
|
||||||
:commands nginx-mode
|
:commands nginx-mode
|
||||||
:mode (("nginx\\.conf\\'" . nginx-mode)
|
:mode (("nginx\\.conf\\'" . nginx-mode)
|
||||||
("/nginx/.+\\.conf\\'" . nginx-mode)))
|
("/nginx/.+\\.conf\\'" . nginx-mode)))
|
||||||
|
|
||||||
;; Major mode for HashiCorp Configuration Language (HCL) files
|
;; Major mode for HashiCorp Configuration Language (HCL) files
|
||||||
|
|||||||
Reference in New Issue
Block a user