mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-01 20:46:12 +01:00
Add ripgrep to Emacs and also add desktop entry for org-protocol
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
e55038fdf6
commit
a9f88e8bbc
|
@ -39,10 +39,14 @@ in
|
||||||
hunspell.enable = true;
|
hunspell.enable = true;
|
||||||
hunspell.dictionaries = with pkgs.hunspellDicts;
|
hunspell.dictionaries = with pkgs.hunspellDicts;
|
||||||
[ en_US ];
|
[ en_US ];
|
||||||
additionalPackages = [
|
additionalPackages =
|
||||||
tex
|
[ tex
|
||||||
r
|
r
|
||||||
];
|
] ++
|
||||||
|
(with pkgs;
|
||||||
|
[ krita
|
||||||
|
ripgrep
|
||||||
|
]);
|
||||||
}).bundle;
|
}).bundle;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -50,6 +54,15 @@ in
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
cfg.package
|
cfg.package
|
||||||
|
(makeDesktopItem {
|
||||||
|
name = "Org-Protocol";
|
||||||
|
exec = "emacsclient %u";
|
||||||
|
comment = "Org protocol";
|
||||||
|
desktopName = "org-protocol";
|
||||||
|
type = "Application";
|
||||||
|
mimeType = "x-scheme-handler/org-protocol";
|
||||||
|
})
|
||||||
|
|
||||||
fira-code
|
fira-code
|
||||||
(iosevka-bin.override { variant = "aile"; })
|
(iosevka-bin.override { variant = "aile"; })
|
||||||
(iosevka-bin.override { variant = "etoile"; })
|
(iosevka-bin.override { variant = "etoile"; })
|
||||||
|
|
Loading…
Reference in a new issue