From b5878d6a8c741138b5efbf4fe1c594f3fd69dbdd Mon Sep 17 00:00:00 2001 From: Rodinei Fagundes Date: Wed, 25 Sep 2024 06:31:55 -0300 Subject: [PATCH] doc: fix configure indentation examples (#340) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index febe6cd..1001969 100644 --- a/README.md +++ b/README.md @@ -84,11 +84,11 @@ If you would love to configure indentation here, this is an example config that ("C-p" . 'copilot-previous-completion)) :config - (add-to-list 'copilot-indentation-alist '(prog-mode . 2)) - (add-to-list 'copilot-indentation-alist '(org-mode . 2)) - (add-to-list 'copilot-indentation-alist '(text-mode . 2)) - (add-to-list 'copilot-indentation-alist '(closure-mode . 2)) - (add-to-list 'copilot-indentation-alist '(emacs-lisp-mode . 2))) + (add-to-list 'copilot-indentation-alist '(prog-mode 2)) + (add-to-list 'copilot-indentation-alist '(org-mode 2)) + (add-to-list 'copilot-indentation-alist '(text-mode 2)) + (add-to-list 'copilot-indentation-alist '(closure-mode 2)) + (add-to-list 'copilot-indentation-alist '(emacs-lisp-mode 2))) ```