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 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 +"; };