mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-01 12:17:26 -05:00
11 lines
359 B
EmacsLisp
11 lines
359 B
EmacsLisp
;;; info-workarounds.el --- Description -*- lexical-binding: t; -*-
|
|
;;; This file allows the `info` function to find other `info` files in the system.
|
|
|
|
;;; For non-NixOS GNU/Linux
|
|
(push "/usr/share/info" Info-directory-list)
|
|
|
|
;;; For NixOS
|
|
(push "/run/current-system/sw/share/info" Info-directory-list)
|
|
|
|
(push "~/.nix-profile/share/info" Info-directory-list)
|