Skip to content

Commit

Permalink
add back snakemake mode
Browse files Browse the repository at this point in the history
  • Loading branch information
beyondpie committed Aug 9, 2022
1 parent a8e83d3 commit a12705e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
(require 'init-windows)
(require 'init-git)
(require 'init-project)
(require 'init-snakemake)

(require 'init-prog)
(require 'init-shell)
Expand Down
17 changes: 17 additions & 0 deletions lisp/init-snakemake.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
;;; init-snakemake.el --- Initialize snakemake configurations. -*- lexical-binding: t -*-
;;; Commentary:
;; Ref: pacemacs

;;; Code:
(use-package snakemake-mode
:defer t
:pin melpa
:ensure t
:mode (("snakefile\\'" . snakemake-mode)
("Snakefile\\'" . snakemake-mode)
("Snakefile.template\\'" . snakemake-mode)
("snakefile.template\\'" . snakemake-mode))
)

(provide 'init-snakemake)
;;; init-snakemake.el ends here

0 comments on commit a12705e

Please sign in to comment.