dev: Do not replace the word after completion

The default behavior when autocompleting infront of a word, without
having a whitespace in between, is to replaice the trailing word. This
change should prevent that from happening.
This commit is contained in:
finga 2025-02-07 07:30:04 +01:00
parent a327b831a9
commit c7945b9791

View file

@ -40,7 +40,9 @@
(add-hook 'prog-mode-hook #'flyspell-prog-mode)
(use-package lsp-mode
:ensure t)
:ensure t
:config
(setq lsp-completion-default-behaviour ':insert))
(use-package lsp-ui
:ensure t