Compare commits
3 Commits
6f64abc64c
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 68a3eed939 | |||
| e5a41e58cd | |||
| 9c74cfdbee |
@@ -125,7 +125,10 @@ in
|
|||||||
markdown-ts-mode # Markdown with tree-sitter parsing
|
markdown-ts-mode # Markdown with tree-sitter parsing
|
||||||
mermaid-ts-mode # Mermaid diagram syntax with tree-sitter
|
mermaid-ts-mode # Mermaid diagram syntax with tree-sitter
|
||||||
scala-ts-mode # Scala with tree-sitter (alternative to scala-mode)
|
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
|
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 + ''
|
extraConfig = builtins.readFile ./emacs/custom.el + ''
|
||||||
|
|||||||
@@ -20,25 +20,31 @@ pkgs.symlinkJoin {
|
|||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = ",zipdir";
|
name = ",zipdir";
|
||||||
runtimeInputs = [ pkgs.zip ];
|
runtimeInputs = [ pkgs.zip ];
|
||||||
text = builtins.readFile ./zipdir;
|
text = builtins.readFile ./zipdir.sh;
|
||||||
})
|
})
|
||||||
|
|
||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = ",split-1G";
|
name = ",split-1G";
|
||||||
runtimeInputs = [ pkgs.coreutils ];
|
runtimeInputs = [ pkgs.coreutils ];
|
||||||
text = builtins.readFile ./split-1G;
|
text = builtins.readFile ./split-1G.sh;
|
||||||
})
|
})
|
||||||
|
|
||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = ",pushover-send";
|
name = ",pushover-send";
|
||||||
runtimeInputs = [ pkgs.curl ];
|
runtimeInputs = [ pkgs.curl ];
|
||||||
text = builtins.readFile ./pushover-send;
|
text = builtins.readFile ./pushover-send.sh;
|
||||||
})
|
})
|
||||||
|
|
||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = ",xz";
|
name = ",xz";
|
||||||
runtimeInputs = [ pkgs.xz ];
|
runtimeInputs = [ pkgs.xz ];
|
||||||
text = builtins.readFile ./xz;
|
text = builtins.readFile ./xz.sh;
|
||||||
|
})
|
||||||
|
|
||||||
|
(pkgs.writeShellApplication {
|
||||||
|
name = ",yt-dlp";
|
||||||
|
runtimeInputs = [ pkgs.nix ];
|
||||||
|
text = builtins.readFile ./yt-dlp.sh;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
3
pkgs/tb-scripts/yt-dlp.sh
Normal file
3
pkgs/tb-scripts/yt-dlp.sh
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
exec nix run nixpkgs/nixpkgs-unstable#yt-dlp -- "$@"
|
||||||
Reference in New Issue
Block a user