Compare commits
1 Commits
master
...
6f64abc64c
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f64abc64c |
@@ -125,10 +125,7 @@ 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,31 +20,25 @@ pkgs.symlinkJoin {
|
|||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = ",zipdir";
|
name = ",zipdir";
|
||||||
runtimeInputs = [ pkgs.zip ];
|
runtimeInputs = [ pkgs.zip ];
|
||||||
text = builtins.readFile ./zipdir.sh;
|
text = builtins.readFile ./zipdir;
|
||||||
})
|
})
|
||||||
|
|
||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = ",split-1G";
|
name = ",split-1G";
|
||||||
runtimeInputs = [ pkgs.coreutils ];
|
runtimeInputs = [ pkgs.coreutils ];
|
||||||
text = builtins.readFile ./split-1G.sh;
|
text = builtins.readFile ./split-1G;
|
||||||
})
|
})
|
||||||
|
|
||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = ",pushover-send";
|
name = ",pushover-send";
|
||||||
runtimeInputs = [ pkgs.curl ];
|
runtimeInputs = [ pkgs.curl ];
|
||||||
text = builtins.readFile ./pushover-send.sh;
|
text = builtins.readFile ./pushover-send;
|
||||||
})
|
})
|
||||||
|
|
||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = ",xz";
|
name = ",xz";
|
||||||
runtimeInputs = [ pkgs.xz ];
|
runtimeInputs = [ pkgs.xz ];
|
||||||
text = builtins.readFile ./xz.sh;
|
text = builtins.readFile ./xz;
|
||||||
})
|
|
||||||
|
|
||||||
(pkgs.writeShellApplication {
|
|
||||||
name = ",yt-dlp";
|
|
||||||
runtimeInputs = [ pkgs.nix ];
|
|
||||||
text = builtins.readFile ./yt-dlp.sh;
|
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
exec nix run nixpkgs/nixpkgs-unstable#yt-dlp -- "$@"
|
|
||||||
Reference in New Issue
Block a user