{pkgs, ...}: { extraPlugins = [ (pkgs.vimUtils.buildVimPlugin { name = "tiny-code-action"; src = pkgs.fetchFromGitHub { owner = "rachartier"; repo = "tiny-code-action.nvim"; rev = "8888f59"; hash = "sha256-F76w/V6G2L1TzjNQJGrge/edWfsBzvp39RvlGzEUVnA="; }; }) ]; extraConfigLua = '' require('tiny-code-action').setup({}) ''; keymaps = [ { action="lua require('tiny-code-action').code_action()"; key = "ca"; options.desc = "code action"; } ]; }