utility/smart-splits: get plugin from github instead of nixpkgs

This commit is contained in:
Laszlo Bacsi 2025-06-16 21:13:43 +02:00
commit 8483a6de97
No known key found for this signature in database
GPG key ID: 7AC6E86EE9E48853
3 changed files with 20 additions and 4 deletions

View file

@ -21,9 +21,9 @@
};
in {
config = mkIf cfg.enable {
vim.lazy.plugins = {
${pkgs.vimPlugins.smart-splits-nvim.pname} = {
package = pkgs.vimPlugins.smart-splits-nvim;
vim = {
lazy.plugins.smart-splits = {
package = "smart-splits";
setupModule = "smart-splits";
inherit (cfg) setupOpts;