From 763b9e3340299185240ec45b9c9b67602ce994ec Mon Sep 17 00:00:00 2001
From: Benedikt Peetz <benedikt.peetz@b-peetz.de>
Date: Wed, 19 Jun 2024 07:15:25 +0200
Subject: fix(modules/nvim): Update to the newest nixVim version

This includes replacing the deprecated `lua = true` pattern with a raw
lua value and using the new name for `nil_ls`: `nil-ls`
---
 modules/home/conf/nvim/plgs/femaco/default.nix | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

(limited to 'modules/home/conf/nvim/plgs/femaco')

diff --git a/modules/home/conf/nvim/plgs/femaco/default.nix b/modules/home/conf/nvim/plgs/femaco/default.nix
index 0b4f7937..6c4a7d89 100644
--- a/modules/home/conf/nvim/plgs/femaco/default.nix
+++ b/modules/home/conf/nvim/plgs/femaco/default.nix
@@ -15,8 +15,7 @@
       {
         key = "<leader>cc";
         mode = "n";
-        action = "require('femaco.edit').edit_code_block";
-        lua = true;
+        action.__raw = "require('femaco.edit').edit_code_block";
         options.desc = "edit a [c]ode blo[c]k with femaco";
       }
     ];
-- 
cgit 1.4.1