Klimi's new dotfiles with stow.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
585 B

  1. ;;; nix-store.el -- run nix commands in Emacs -*- lexical-binding: t -*-
  2. ;; Author: Matthew Bauer <mjbauer95@gmail.com>
  3. ;; Homepage: https://github.com/NixOS/nix-mode
  4. ;; Keywords: nix
  5. ;; Version: 1.4.0
  6. ;; This file is NOT part of GNU Emacs.
  7. ;;; Commentary:
  8. ;;; Code:
  9. (require 'nix)
  10. (defun nix-store-realise (path)
  11. "Realise a path asynchronously.
  12. PATH the path within /nix/store to realise"
  13. (make-process
  14. :buffer nil
  15. :command (list nix-store-executable "-r" path)
  16. :noquery t
  17. :name (format "*nix-store*<%s>" path)))
  18. (provide 'nix-store)
  19. ;;; nix-store.el ends here