From 391f18ce294969efb621711c912630c6e6db5f36 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Thu, 21 Sep 2023 12:14:35 +0200 Subject: [PATCH 1/2] feat: disable useSystemClipboard by default --- modules/basic/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/basic/module.nix b/modules/basic/module.nix index 553ee15..516a4ba 100644 --- a/modules/basic/module.nix +++ b/modules/basic/module.nix @@ -90,7 +90,7 @@ with builtins; { useSystemClipboard = mkOption { type = types.bool; - default = true; + default = false; description = "Make use of the clipboard for default yank and paste operations. Don't use * and +"; }; From 6d53aa7b05570ac02175a1e97605d1cdfc360d96 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Thu, 21 Sep 2023 12:26:10 +0200 Subject: [PATCH 2/2] chore: update changelog --- docs/release-notes/rl-0.5.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/release-notes/rl-0.5.adoc b/docs/release-notes/rl-0.5.adoc index 0a6c28c..ac6a199 100644 --- a/docs/release-notes/rl-0.5.adoc +++ b/docs/release-notes/rl-0.5.adoc @@ -53,3 +53,11 @@ https://github.com/notashelf[notashelf]: * Added a configuration option for choosing the leader key * The package used for neovim is now customizable by the user, using <>. For best results, always use an unwrapped package. + +https://github.com/jacekpoz[jacekpoz]: + +* Fixed scrollOffset not being used + +* Updated clangd to 16 + +* Disabled `useSystemClipboard` by default