Minor fix

This commit is contained in:
js0ny 2025-02-09 23:55:17 +00:00
parent 2248d3a237
commit 58a47f91d8
5 changed files with 23 additions and 0 deletions

View file

@ -78,8 +78,21 @@
(global-wakatime-mode)
(setq wakatime-cli-path "~/.local/bin/wakatime"))
;; accept completion from copilot and fallback to company
(use-package! copilot
:hook (prog-mode . copilot-mode)
:bind (:map copilot-completion-map
("<tab>" . 'copilot-accept-completion)
("TAB" . 'copilot-accept-completion)
("C-TAB" . 'copilot-accept-completion-by-word)
("C-<tab>" . 'copilot-accept-completion-by-word)))
(load! "evil.el")
(load! "treemacs.el")
(load! "org.el")
(!after evil-matchit
(global-evil-matchit-mode 1)
)

View file

@ -49,3 +49,6 @@
;; (unpin! t)
(package! wakatime-mode)
(package! copilot
:recipe (:host github :repo "copilot-emacs/copilot.el" :files ("*.el")))
(package! evil-matchit)