Compare commits
1 Commits
master
...
6f64abc64c
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f64abc64c |
@@ -125,10 +125,7 @@ in
|
||||
markdown-ts-mode # Markdown with tree-sitter parsing
|
||||
mermaid-ts-mode # Mermaid diagram syntax with tree-sitter
|
||||
scala-ts-mode # Scala with tree-sitter (alternative to scala-mode)
|
||||
kotlin-ts-mode # Kotlin programming with tree-sitter
|
||||
swift-ts-mode # Swift programming with tree-sitter
|
||||
typst-ts-mode # Typst typesetting with tree-sitter
|
||||
zig-ts-mode # Zig programming with tree-sitter
|
||||
];
|
||||
|
||||
extraConfig = builtins.readFile ./emacs/custom.el + ''
|
||||
|
||||
@@ -20,31 +20,25 @@ pkgs.symlinkJoin {
|
||||
(pkgs.writeShellApplication {
|
||||
name = ",zipdir";
|
||||
runtimeInputs = [ pkgs.zip ];
|
||||
text = builtins.readFile ./zipdir.sh;
|
||||
text = builtins.readFile ./zipdir;
|
||||
})
|
||||
|
||||
(pkgs.writeShellApplication {
|
||||
name = ",split-1G";
|
||||
runtimeInputs = [ pkgs.coreutils ];
|
||||
text = builtins.readFile ./split-1G.sh;
|
||||
text = builtins.readFile ./split-1G;
|
||||
})
|
||||
|
||||
(pkgs.writeShellApplication {
|
||||
name = ",pushover-send";
|
||||
runtimeInputs = [ pkgs.curl ];
|
||||
text = builtins.readFile ./pushover-send.sh;
|
||||
text = builtins.readFile ./pushover-send;
|
||||
})
|
||||
|
||||
(pkgs.writeShellApplication {
|
||||
name = ",xz";
|
||||
runtimeInputs = [ pkgs.xz ];
|
||||
text = builtins.readFile ./xz.sh;
|
||||
})
|
||||
|
||||
(pkgs.writeShellApplication {
|
||||
name = ",yt-dlp";
|
||||
runtimeInputs = [ pkgs.nix ];
|
||||
text = builtins.readFile ./yt-dlp.sh;
|
||||
text = builtins.readFile ./xz;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
exec nix run nixpkgs/nixpkgs-unstable#yt-dlp -- "$@"
|
||||
Reference in New Issue
Block a user