diff options
author | Soispha <soispha@vhack.eu> | 2023-08-27 20:50:28 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-27 20:50:28 +0200 |
commit | d89d7759c1da65f7de56d752ccfde6cc85b583e5 (patch) | |
tree | f3b025acda802ae5d89dd93424e9617a598aca92 /hm | |
parent | Fix(hm/conf/nvim/plugins/todo-comments): Add default highlighting (diff) | |
download | nixos-config-d89d7759c1da65f7de56d752ccfde6cc85b583e5.tar.gz nixos-config-d89d7759c1da65f7de56d752ccfde6cc85b583e5.zip |
Fix(hm/conf/nvim/plugins/femaco): Actually bind key to function
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/nvim/plugins/femaco/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/nvim/plugins/femaco/default.nix b/hm/soispha/conf/nvim/plugins/femaco/default.nix index 6d7ec16a..e58fc8fe 100644 --- a/hm/soispha/conf/nvim/plugins/femaco/default.nix +++ b/hm/soispha/conf/nvim/plugins/femaco/default.nix @@ -14,7 +14,7 @@ maps = { normal = { "<leader>cc" = { - action = "require('femaco.edit').edit_code_block()"; + action = "require('femaco.edit').edit_code_block"; lua = true; desc = "edit a [c]ode blo[c]k with femaco"; }; |