mirror of
https://git.sr.ht/~magic_rb/website
synced 2024-11-22 00:04:20 +01:00
Add YAML mode
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
9b2cf353fa
commit
4971e799bc
19
flake.lock
19
flake.lock
|
@ -115,7 +115,8 @@
|
|||
"nixng": "nixng",
|
||||
"nixpkgs": "nixpkgs_2",
|
||||
"org-thtml": "org-thtml",
|
||||
"web-mode": "web-mode"
|
||||
"web-mode": "web-mode",
|
||||
"yaml-mode": "yaml-mode"
|
||||
}
|
||||
},
|
||||
"web-mode": {
|
||||
|
@ -133,6 +134,22 @@
|
|||
"repo": "web-mode",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"yaml-mode": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1641308620,
|
||||
"narHash": "sha256-/0Gt2jqJljN5glxG7H0L3rZVRc34d9jCkoYALHDRt7w=",
|
||||
"owner": "yoshiki",
|
||||
"repo": "yaml-mode",
|
||||
"rev": "a79d2a7b9281f8c56f461d717b1ba40fc58e22fd",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "yoshiki",
|
||||
"repo": "yaml-mode",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
modus-themes = { url = "github:protesilaos/modus-themes"; flake = false; };
|
||||
web-mode = { url = "github:fxbois/web-mode"; flake = false; };
|
||||
hcl-mode = { url = "github:purcell/emacs-hcl-mode"; flake = false; };
|
||||
yaml-mode = { url = "github:yoshiki/yaml-mode"; flake = false; };
|
||||
};
|
||||
|
||||
outputs = { self
|
||||
|
@ -17,6 +18,7 @@
|
|||
, modus-themes
|
||||
, web-mode
|
||||
, hcl-mode
|
||||
, yaml-mode
|
||||
, ...
|
||||
}@inputs:
|
||||
let
|
||||
|
@ -40,6 +42,7 @@
|
|||
emacsclient -e $'(add-to-list \'load-path "${emacs-htmlize}")'
|
||||
emacsclient -e $'(add-to-list \'load-path "${web-mode}")'
|
||||
emacsclient -e $'(add-to-list \'load-path "${hcl-mode}")'
|
||||
emacsclient -e $'(add-to-list \'load-path "${yaml-mode}")'
|
||||
|
||||
emacsclient -e '(load-file "./make.el")'
|
||||
emacsclient -e '(magic_rb/publish-website "${which}")'
|
||||
|
|
Loading…
Reference in a new issue