16 lines
340 B
Nix
Raw Normal View History

2022-11-27 22:37:47 -07:00
{ pkgs, dsl, ... }: {
2023-07-30 20:26:23 -04:00
# Toggleterm provides a floating terminal inside the editor for quick access
2022-11-27 22:37:47 -07:00
plugins = [ pkgs.vimPlugins.toggleterm-nvim ];
use.toggleterm.setup = dsl.callWith {
open_mapping = dsl.rawLua "[[<c-\\>]]";
hide_numbers = true;
direction = "float";
};
lua = builtins.readFile ./toggleterm.lua;
}