Merge pull request #136 from jacekpoz/main

disable useSystemClipboard by default
This commit is contained in:
NotAShelf 2023-09-22 13:32:10 +03:00 committed by GitHub
commit 33daa8b1e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -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 <<opt-vim.package>>. 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

View File

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