Created
September 28, 2018 16:14
-
-
Save dhess/479b296e3a827ae6a7ec94914517a7d9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-package company | |
:config | |
(setq company-global-modes '(not erc-mode)) | |
(add-hook 'after-init-hook 'global-company-mode)) | |
(use-package nix-sandbox | |
:config | |
(setq nix-nixpkgs-path (expand-file-name "~/.nix-defexpr/nixpkgs"))) | |
(use-package nix-mode | |
:mode "\\.nix\\'") | |
(use-package nixos-options | |
:config | |
(use-package company-nixos-options | |
:ensure company | |
:config | |
(add-to-list 'company-backends 'company-nixos-options))) | |
(use-package nix-update | |
:ensure nil | |
:load-path "site-lisp/nix-update" | |
:bind (("C-. u" . nix-update-fetch))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment