Re-install copilot
on emacs
This commit is contained in:
parent
23e3c53693
commit
49c94bcd62
2 changed files with 23 additions and 0 deletions
|
@ -171,6 +171,13 @@
|
|||
(indent-bars-prefer-character 't) ;; so it works also in terminal
|
||||
)
|
||||
|
||||
(use-package copilot
|
||||
:custom
|
||||
(copilot-max-char -1)
|
||||
(copilot-indent-offset-warning-disable 't)
|
||||
:hook (prog-mode org-mode)
|
||||
:bind (("C-<tab>" . copilot-accept-completion)))
|
||||
|
||||
(use-package diredfl
|
||||
:config (diredfl-global-mode))
|
||||
|
||||
|
|
|
@ -44,6 +44,22 @@ let
|
|||
};
|
||||
deps = [ elpaPackages.heap ];
|
||||
};
|
||||
copilot = buildEmacsPackage {
|
||||
name = "copilot";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "copilot-emacs";
|
||||
repo = "copilot.el";
|
||||
rev = "b7bff7b934837744688fd74191ecffb83b3bcc05";
|
||||
hash = "sha256-MEsjXQIeiTI6NXN5rTW7HfFPC18IZnhAssma2BZa0ks=";
|
||||
};
|
||||
deps = with epkgs; [
|
||||
s
|
||||
dash
|
||||
editorconfig
|
||||
jsonrpc
|
||||
f
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
# *List* containing emacs packages from (M)ELPA
|
||||
|
|
Loading…
Add table
Reference in a new issue