mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-05 12:37:33 -05:00
feat(fortran): initial addition of ifort functions
This commit is contained in:
committed by
Henrik Lissner
parent
ece4a74a9b
commit
81dc9af008
@ -8,9 +8,11 @@
|
||||
:config
|
||||
;; --- Compilation --- ;;
|
||||
;; Used by `compile' (SPC c c)
|
||||
(setq-hook! 'f90-mode-hook
|
||||
compile-command "gfortran "
|
||||
compilation-buffer-name-function #'+fortran-compilation-buffer-name-fn)
|
||||
(let ((cmd (cond ((featurep! +intel) "ifort ")
|
||||
(t "gfortran "))))
|
||||
(setq-hook! 'f90-mode-hook
|
||||
compile-command cmd
|
||||
compilation-buffer-name-function #'+fortran-compilation-buffer-name-fn))
|
||||
(set-popup-rule! "^\\*fortran-compilation" :side 'right :size 0.5 :quit t)
|
||||
|
||||
;; --- LSP Configuration --- ;;
|
||||
|
Reference in New Issue
Block a user