{ programs.nixvim = { keymaps = [ { action = "ggG"; # select entire document key = ""; mode = "n"; } { action = "ChatGPTEditWithInstructions"; key = "!egpt"; mode = "n"; } { action = "ChatGPTCompleteCode"; key = "!cgpt"; mode = "n"; } { action = "ChatGPT"; key = "!gpt"; mode = "n"; } { action = "lua vim.lsp.buf.code_action()"; key = "!ca"; mode = "n"; } { action = "Telescope"; key = "!t"; mode = "n"; } { action = "lua vim.lsp.buf.format()"; key = "!fmt"; mode = "n"; } { action = "lua vim.diagnostic.open_float()"; key = "!df"; mode = "n"; } { action = "W"; key = ""; mode = "n"; } { action = "w"; key = ""; mode = "n"; } { action = "FloatermToggle shadeterm"; key = ""; mode = "n"; } { action = "NvimTreeToggle"; key = ""; mode = "n"; } { action = "FloatermToggle shadeterm"; key = ""; mode = "t"; } { action = "COQnow"; key = "!cq"; mode = "n"; } ]; }; }