feat: change nixvim toggleterm to use fish as shell

This commit is contained in:
Zhongheng Liu 2024-08-11 20:28:38 +08:00
commit dbba4a63e0
No known key found for this signature in database
2 changed files with 8 additions and 1 deletions

View file

@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
imports = [
./auto-pairs.nix
./autosave.nix

View file

@ -3,6 +3,9 @@
enable = true;
settings = {
open_mapping = "[[<C-t>]]";
# FIXME this is weird because the shell option must be manually updated
# because I don't understand how .nix files work when imported
shell = "fish";
};
};
}