mirror of
https://github.com/softinio/nix-config.git
synced 2025-09-05 09:06:42 -07:00
flake update and add ghostty
This commit is contained in:
parent
2dba5a2de1
commit
4616344162
5 changed files with 43 additions and 14 deletions
28
programs/ghostty/default.nix
Normal file
28
programs/ghostty/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
my_settings = {
|
||||
auto-update = "off";
|
||||
copy-on-select = "clipboard";
|
||||
font-family = "SF Mono";
|
||||
font-size = 16;
|
||||
macos-titlebar-style = "transparent";
|
||||
mouse-hide-while-typing = true;
|
||||
split-divider-color = "orange";
|
||||
theme = "Builtin Tango Dark";
|
||||
window-inherit-working-directory = true;
|
||||
window-save-state = "always";
|
||||
working-directory = "home";
|
||||
keybind = [
|
||||
"shift+enter=text:\n"
|
||||
];
|
||||
};
|
||||
in
|
||||
{
|
||||
programs.ghostty = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
installVimSyntax = true;
|
||||
package = pkgs.ghostty-bin;
|
||||
settings = my_settings;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue