dotfiles/modules/common/neovim/config/toggleterm.nix

16 lines
340 B
Nix
Raw Normal View History

2022-11-28 05:37:47 +00:00
{ pkgs, dsl, ... }: {
2023-07-31 00:26:23 +00:00
# Toggleterm provides a floating terminal inside the editor for quick access
2022-11-28 05:37:47 +00: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;
}