feat: toggleterm keybindings

This commit is contained in:
n3oney 2023-04-05 00:06:30 +02:00
parent 158a74e00d
commit c45e71a5a5
No known key found for this signature in database
GPG Key ID: C786693DE727850E
2 changed files with 8 additions and 1 deletions

View File

@ -14,7 +14,7 @@ in {
vim.luaConfigRC.toggleterm = nvim.dag.entryAnywhere ''
require("toggleterm").setup({
open_mapping = [[<c-t>]],
open_mapping = '${cfg.mappings.open}',
direction = '${toString cfg.direction}',
-- TODO: this should probably be turned into a module that uses the lua function if and only if the user has not set it
size = function(term)

View File

@ -7,6 +7,13 @@ with lib;
with builtins; {
options.vim.terminal.toggleterm = {
enable = mkEnableOption "Enable toggleterm as a replacement to built-in terminal command";
mappings = {
open = mkOption {
type = types.str;
description = "The keymapping to open toggleterm";
default = "<c-t>";
};
};
direction = mkOption {
type = types.enum ["horizontal" "vertical" "tab" "float"];
default = "horizontal";