fix(fortran): account for the .F90 extension

In the Elder Days, it was common to give Fortran files the extensions of
`.FOR` or later `.F90`. The major modes for Fortran don't automatically
detect this conversion. The former was already accounted for in Doom's
module, but not the latter. This commit rectifies this.
This commit is contained in:
Colin Woodbury 2023-02-24 12:57:53 +09:00 committed by Henrik Lissner
parent b4034a590b
commit e395ff0eb0

View file

@ -5,6 +5,7 @@
(use-package! f90 (use-package! f90
:defer t :defer t
:mode ("\\.F90" . f90-mode)
:config :config
;; --- Compilation --- ;; ;; --- Compilation --- ;;
;; Used by `compile' (SPC c c) ;; Used by `compile' (SPC c c)