From 015832bdea864a58e315d304842fd8d4cc48c54f Mon Sep 17 00:00:00 2001 From: traxys Date: Tue, 2 Jul 2024 16:28:24 +0200 Subject: [PATCH] neovim: Adapt to nixvim changes --- neovim/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/neovim/default.nix b/neovim/default.nix index daa4395..9ad44e0 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -184,12 +184,11 @@ { key = "rn"; mode = [ "n" ]; - action = '' + action = helpers.mkRaw '' function() return ":IncRename " .. vim.fn.expand("") end ''; - lua = true; options.expr = true; } ]; @@ -566,7 +565,7 @@ plugins.rustaceanvim = { enable = true; - server = { + settings.server = { settings = { cargo.features = "all"; checkOnSave = true; @@ -729,7 +728,7 @@ plugins.zk = { enable = true; - picker = "telescope"; + settings.picker = "telescope"; }; plugins.which-key.enable = true;