mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
ghostty macos config, fixed zellij keybinds
This commit is contained in:
parent
c3569c5afc
commit
2b89c9565e
3 changed files with 45 additions and 37 deletions
|
|
@ -35,8 +35,6 @@ in {
|
|||
if test -e $HOME/.config/fish/variables-$(hostname)fish
|
||||
source $HOME/.config/fish/variables-$(hostname).fish
|
||||
end
|
||||
|
||||
fish_config theme save "Catppuccin Latte"
|
||||
'';
|
||||
|
||||
plugins = [
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, lib, ...}: let
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
catppuccin = pkgs.fetchFromGitHub {
|
||||
owner = "catppuccin";
|
||||
repo = "ghostty";
|
||||
|
|
@ -9,12 +13,18 @@ in {
|
|||
programs.ghostty = {
|
||||
enable = true;
|
||||
|
||||
package = if pkgs.stdenv.isDarwin then pkgs.unstable.ghostty-bin else pkgs.unstable.ghostty;
|
||||
package =
|
||||
if pkgs.stdenv.isDarwin
|
||||
then pkgs.unstable.ghostty-bin
|
||||
else pkgs.unstable.ghostty;
|
||||
|
||||
settings = {
|
||||
theme = "dark:catppuccin-macchiato.conf,light:catppuccin-latte.conf";
|
||||
macos-option-as-alt = "left";
|
||||
|
||||
keybind = [
|
||||
"alt+left=unbind"
|
||||
"alt+right=unbind"
|
||||
"global:f12=toggle_quick_terminal"
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue