Files
nix-doom-emacs/info-workarounds.el

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)