mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +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.dictionaries = with pkgs.hunspellDicts;
|
||||
[ en_US ];
|
||||
additionalPackages = [
|
||||
tex
|
||||
r
|
||||
];
|
||||
additionalPackages =
|
||||
[ tex
|
||||
r
|
||||
] ++
|
||||
(with pkgs;
|
||||
[ krita
|
||||
ripgrep
|
||||
]);
|
||||
}).bundle;
|
||||
};
|
||||
};
|
||||
|
@ -50,6 +54,15 @@ in
|
|||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
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
|
||||
(iosevka-bin.override { variant = "aile"; })
|
||||
(iosevka-bin.override { variant = "etoile"; })
|
||||
|
|
Loading…
Reference in a new issue