{ ... }: { programs.nixvim = { plugins = { toggleterm = { enable = true; settings = { open_mapping.__raw = "[[]]"; insert_mappings = true; shade_terminals = false; }; }; }; keymaps = [ { action = "ToggleTermSendCurrentLine"; key = "sts"; mode = "n"; options = { desc = "Send Current Line"; }; } { action = "ToggleTermSendVisualLines"; key = "stv"; mode = "x"; options = { desc = "Send all the (whole) lines in selection"; }; } { action = "ToggleTermSendVisualSelection"; key = "sts"; mode = "x"; options = { desc = "Send selection"; }; } ]; }; }