mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-07 12:47:32 -05:00
Doc align fixes
This commit is contained in:
30
default.nix
30
default.nix
@ -1,13 +1,13 @@
|
|||||||
{ # The files would be going to ~/.config/doom (~/.doom.d)
|
{ # The files would be going to ~/.config/doom (~/.doom.d)
|
||||||
doomPrivateDir
|
doomPrivateDir
|
||||||
/* Extra packages to install
|
/* Extra packages to install
|
||||||
|
|
||||||
Useful for non-emacs packages containing emacs bindings (e.g.
|
Useful for non-emacs packages containing emacs bindings (e.g.
|
||||||
mu4e).
|
mu4e).
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
extraPackages = epkgs: [ pkgs.mu ];
|
extraPackages = epkgs: [ pkgs.mu ];
|
||||||
*/
|
*/
|
||||||
, extraPackages ? epkgs: [ ]
|
, extraPackages ? epkgs: [ ]
|
||||||
/* Extra configuration to source during initialization
|
/* Extra configuration to source during initialization
|
||||||
|
|
||||||
@ -24,17 +24,17 @@
|
|||||||
Only used to get emacs package, if `bundledPackages` is set.
|
Only used to get emacs package, if `bundledPackages` is set.
|
||||||
*/
|
*/
|
||||||
, emacsPackages
|
, emacsPackages
|
||||||
/* Overlay to customize emacs (elisp) dependencies
|
/* Overlay to customize emacs (elisp) dependencies
|
||||||
|
|
||||||
See overrides.nix for addition examples.
|
See overrides.nix for addition examples.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
emacsPackagesOverlay = self: super: {
|
emacsPackagesOverlay = self: super: {
|
||||||
magit-delta = super.magit-delta.overrideAttrs (esuper: {
|
magit-delta = super.magit-delta.overrideAttrs (esuper: {
|
||||||
buildInputs = esuper.buildInputs ++ [ pkgs.git ];
|
buildInputs = esuper.buildInputs ++ [ pkgs.git ];
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
, emacsPackagesOverlay ? self: super: { }
|
, emacsPackagesOverlay ? self: super: { }
|
||||||
/* Use bundled revision of github.com/nix-community/emacs-overlay
|
/* Use bundled revision of github.com/nix-community/emacs-overlay
|
||||||
as `emacsPackages`.
|
as `emacsPackages`.
|
||||||
|
Reference in New Issue
Block a user