mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
14 lines
331 B
Nix
14 lines
331 B
Nix
{ config, ... }: {
|
|
programs.nixvim = {
|
|
plugins.floaterm.enable = true;
|
|
highlightOverride = {
|
|
FloatermBorder.fg = "#${config.lib.stylix.colors.base01}";
|
|
};
|
|
keymaps = [{
|
|
key = "<leader>cn";
|
|
action = "<cmd>FloatermNew --title=nixy nixy || sleep 10<cr>";
|
|
options.desc = "Nixy";
|
|
}];
|
|
};
|
|
}
|