Update README.md

This commit is contained in:
James Cherti
2026-02-03 11:20:31 -05:00
parent 768c41e654
commit 37076a6cf6

View File

@@ -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
;; ;;