mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 16:05:58 +01:00
Merge pull request #136 from jacekpoz/main
disable useSystemClipboard by default
This commit is contained in:
commit
33daa8b1e7
2 changed files with 9 additions and 1 deletions
|
@ -53,3 +53,11 @@ https://github.com/notashelf[notashelf]:
|
||||||
* Added a configuration option for choosing the leader key
|
* 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.
|
* 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
|
||||||
|
|
|
@ -90,7 +90,7 @@ with builtins; {
|
||||||
|
|
||||||
useSystemClipboard = mkOption {
|
useSystemClipboard = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
description = "Make use of the clipboard for default yank and paste operations. Don't use * and +";
|
description = "Make use of the clipboard for default yank and paste operations. Don't use * and +";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue