Fix clipboard support in nvim

This commit is contained in:
Manuel Thalmann 2024-05-09 12:49:51 +02:00
parent 94d4aff275
commit 6e199f3948

View file

@ -144,7 +144,10 @@
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;
configure.packages.myNVimPackage = configure = {
customRC = "set clipboard+=unnamed,unnamedplus";
packages.myNVimPackage =
with pkgs.vimPlugins; with pkgs.vimPlugins;
{ {
start = [ start = [
@ -153,6 +156,7 @@
]; ];
}; };
}; };
};
tmux.enable = true; tmux.enable = true;
htop.enable = true; htop.enable = true;
@ -178,6 +182,8 @@
rar rar
goldwarden goldwarden
gitflow gitflow
wl-clipboard
wl-clipboard-x11
]; ];
}; };