mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 11:13:04 +03:00
13 lines
303 B
EmacsLisp
13 lines
303 B
EmacsLisp
;;; -*- lexical-binding: t -*-
|
|
(use-package guix
|
|
:straight t
|
|
:if (executable-find "guix")
|
|
:commands (guix)
|
|
:init
|
|
(my-leader-def "ag" 'guix)
|
|
(defun geiser-company--setup (&rest args)
|
|
"A dummy function.")
|
|
(defvar geiser-repl-company-p nil
|
|
"A dummy variable."))
|
|
|
|
(provide 'sqrt-guix)
|