feat: add MarkEdit catppuccin theme and MTE table editor
This commit is contained in:
parent
b2e3092c2e
commit
83092f70f8
2 changed files with 17 additions and 0 deletions
|
|
@ -5,6 +5,7 @@
|
||||||
./git.nix
|
./git.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
./duti.nix
|
./duti.nix
|
||||||
|
./markedit.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = "24.11";
|
home.stateVersion = "24.11";
|
||||||
|
|
|
||||||
16
home/markedit.nix
Normal file
16
home/markedit.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
# MarkEdit extensions - install .js scripts to MarkEdit's scripts directory
|
||||||
|
# Path: ~/Library/Containers/app.cyan.markedit/Data/Documents/scripts/
|
||||||
|
|
||||||
|
# Catppuccin theme
|
||||||
|
home.file."Library/Containers/app.cyan.markedit/Data/Documents/scripts/markedit-theme-catppuccin.js".source = pkgs.fetchurl {
|
||||||
|
url = "https://raw.githubusercontent.com/MarkEdit-app/MarkEdit-theme-catppuccin/main/dist/markedit-theme-catppuccin.js";
|
||||||
|
sha256 = "1mhl4s4ggmiy27dgr7cfwybq18alfald3my1x0l511p5h4psw9xf";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Markdown Table Editor (MTE)
|
||||||
|
home.file."Library/Containers/app.cyan.markedit/Data/Documents/scripts/markedit-mte.js".source = pkgs.fetchurl {
|
||||||
|
url = "https://raw.githubusercontent.com/MarkEdit-app/MarkEdit-mte/main/dist/markedit-mte.js";
|
||||||
|
sha256 = "000pw16f60nv1jq7g6yjf0ymzg4mbga7m98naj8j794lmh6ss20v";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue