Fix R mode not being enabled
This commit is contained in:
parent
9cab44bbc4
commit
0b74600f84
1 changed files with 8 additions and 6 deletions
|
@ -47,12 +47,6 @@
|
||||||
:mode "\\.yaml\\'"
|
:mode "\\.yaml\\'"
|
||||||
)
|
)
|
||||||
|
|
||||||
;; R language support
|
|
||||||
(use-package ess
|
|
||||||
:mode "\\.r\\'"
|
|
||||||
:mode "\\.R\\'"
|
|
||||||
)
|
|
||||||
|
|
||||||
;; Haskell language support
|
;; Haskell language support
|
||||||
(use-package haskell-mode
|
(use-package haskell-mode
|
||||||
:mode "\\.hs\\'"
|
:mode "\\.hs\\'"
|
||||||
|
@ -63,6 +57,14 @@
|
||||||
:mode "\\.py\\'"
|
:mode "\\.py\\'"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
;; R syntax support
|
||||||
|
(use-package ess
|
||||||
|
:init
|
||||||
|
(load "ess-autoloads")
|
||||||
|
:mode ("\\.r\\'" . ess-r-mode)
|
||||||
|
:mode ("\\.R\\'" . ess-r-mode)
|
||||||
|
)
|
||||||
|
|
||||||
;; Ruby language support
|
;; Ruby language support
|
||||||
(use-package ruby-mode
|
(use-package ruby-mode
|
||||||
:ensure nil ;; Included with emacs
|
:ensure nil ;; Included with emacs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue