diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-06-19 07:15:25 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-06-19 07:15:25 +0200 |
commit | 763b9e3340299185240ec45b9c9b67602ce994ec (patch) | |
tree | 3874135d1b4cf7550f2b0a5d392298dbd303b70b /modules/home/conf/nvim/plgs/femaco | |
parent | fix(pkgs/brightness): Remove unneeded variable assignment (diff) | |
download | nixos-config-763b9e3340299185240ec45b9c9b67602ce994ec.tar.gz nixos-config-763b9e3340299185240ec45b9c9b67602ce994ec.zip |
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`
Diffstat (limited to 'modules/home/conf/nvim/plgs/femaco')
-rw-r--r-- | modules/home/conf/nvim/plgs/femaco/default.nix | 3 |
1 files changed, 1 insertions, 2 deletions
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"; } ]; |