From 88de853e1587c4ab5d86ad779e3b2ca8e7844552 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Sat, 4 Jan 2025 16:18:07 -0600 Subject: [PATCH] ghostty: add config, use solarized theme everywhere --- fish/config.fish | 4 +++- ghostty/config | 4 ++++ git/config | 1 - helix/config.toml | 3 ++- install/install-symlinks.sh | 1 + 5 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 ghostty/config diff --git a/fish/config.fish b/fish/config.fish index a840f8a..aa9140b 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -1,5 +1,7 @@ set -gx BAT_STYLE plain -set -gx BAT_THEME Coldark-Dark +set -gx BAT_THEME "Solarized (dark)" +set -gx BAT_THEME_DARK "Solarized (dark)" +set -gx BAT_THEME_LIGHT "Solarized (light)" set -gx EDITOR hx set -gx LANG en_US.UTF-8 set -gx LESS '-x4 -z-4 -j.25 -iFMRS' diff --git a/ghostty/config b/ghostty/config new file mode 100644 index 0000000..4273699 --- /dev/null +++ b/ghostty/config @@ -0,0 +1,4 @@ +font-size = 11 +theme = dark:Builtin Solarized Dark,light:Builtin Solarized Light +window-height = 60 +window-width = 200 diff --git a/git/config b/git/config index ed0a030..aefbf0c 100644 --- a/git/config +++ b/git/config @@ -11,7 +11,6 @@ pager = delta [delta] features = blame-style diff-style - syntax-theme = Coldark-Dark [delta "blame-style"] blame-code-style = syntax blame-format = " {commit:<8} {author:^16.15} {timestamp:>10} " diff --git a/helix/config.toml b/helix/config.toml index e647a41..b97b844 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -1,4 +1,5 @@ -theme = "onedark" +theme = "solarized_dark" +#theme = "solarized_light" [editor] auto-save = true diff --git a/install/install-symlinks.sh b/install/install-symlinks.sh index 7267a65..cc2725e 100755 --- a/install/install-symlinks.sh +++ b/install/install-symlinks.sh @@ -23,6 +23,7 @@ install_symlink() { install_symlink "$ROOTDIR/atuin" "$HOME/.config/atuin" install_symlink "$ROOTDIR/fd" "$HOME/.config/fd" install_symlink "$ROOTDIR/fish" "$HOME/.config/fish" +install_symlink "$ROOTDIR/ghostty" "$HOME/.config/ghostty" install_symlink "$ROOTDIR/git" "$HOME/.config/git" install_symlink "$ROOTDIR/helix" "$HOME/.config/helix" install_symlink "$ROOTDIR/nix" "$HOME/.config/nix"