mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
Former-commit-id: ab6fc98de6
15 lines
369 B
Nix
15 lines
369 B
Nix
{ config, ... }: {
|
|
programs.nixvim = {
|
|
plugins.floaterm.enable = true;
|
|
highlightOverride = {
|
|
FloatermBorder.fg = "#${config.lib.stylix.colors.base01}";
|
|
};
|
|
keymaps = [{
|
|
key = "<leader>cn";
|
|
action =
|
|
"<cmd>FloatermNew --wintype=split --height=20 --title=nixy --autoclose=0 nixy<cr>";
|
|
options.desc = "Nixy";
|
|
}];
|
|
};
|
|
}
|