mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
56e55563a1
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
23 lines
537 B
Nix
23 lines
537 B
Nix
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
installVimSyntax = true;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
window-padding-x = 10;
|
|
window-padding-y = 10;
|
|
keybind = [
|
|
"ctrl+j=goto_split:left"
|
|
"ctrl+i=goto_split:up"
|
|
"ctrl+k=goto_split:down"
|
|
"ctrl+l=goto_split:right"
|
|
"shift+ctrl+j=new_split:left"
|
|
"shift+ctrl+i=new_split:up"
|
|
"shift+ctrl+k=new_split:down"
|
|
"shift+ctrl+l=new_split:right"
|
|
"shift+ctrl+tab=new_tab"
|
|
];
|
|
};
|
|
};
|
|
}
|