Become a proper greybeard bioinformatician

This commit is contained in:
coolneng 2021-10-18 17:19:44 +02:00
parent 75d304022e
commit 969a3d92fa
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 6 additions and 0 deletions

View File

@ -54,3 +54,9 @@
(add-to-list 'projectile-globally-ignored-files ".gitkeep"))
;; Set org-mode as the default
(setq-default major-mode 'org-mode)
;; Associate polymode to R markdown files
(add-to-list 'auto-mode-alist '("\\.[rR]md\\'" . poly-markdown+R-mode))
;; Keybindings for R markdown polymode
(map! :map poly-markdown+R-mode-map
:n "RET" #'polymode-eval-chunk
:desc "Evaluate code block")