···1+# Settings for a few things I use that don't sync between devices?
2+- Zed
3+- Ghostty
+33
ghostty/config
···000000000000000000000000000000000
···1+# This is the configuration file for Ghostty.
2+#
3+# This template file has been automatically created at the following
4+# path since Ghostty couldn't find any existing config files on your system:
5+#
6+# /Users/baileytownsend/Library/Application Support/com.mitchellh.ghostty/config
7+#
8+# The template does not set any default options, since Ghostty ships
9+# with sensible defaults for all options. Users should only need to set
10+# options that they want to change from the default.
11+#
12+# Run `ghostty +show-config --default --docs` to view a list of
13+# all available config options and their default values.
14+#
15+# Additionally, each config option is also explained in detail
16+# on Ghostty's website, at https://ghostty.org/docs/config.
17+#
18+# Ghostty can reload the configuration while running by using the menu
19+# options or the bound key (default: Command + Shift + comma on macOS and
20+# Control + Shift + comma on other platforms). Not all config options can be
21+# reloaded while running; some only apply to new windows and others may require
22+# a full restart to take effect.
23+24+# Config syntax crash course
25+# ==========================
26+# # The config file consists of simple key-value pairs,
27+# # separated by equals signs.
28+29+theme = Dracula
30+font-size = 17
31+window-height = 30
32+window-width = 120
33+shell-integration-features= title,ssh-env
+19
zed/settings.json
···0000000000000000000
···1+// Zed settings
2+//
3+// For information on how to configure Zed, see the Zed
4+// documentation: https://zed.dev/docs/configuring-zed
5+//
6+// To see all of Zed's default settings without changing your
7+// custom settings, run `zed: open default settings` from the
8+// command palette (cmd-shift-p / ctrl-shift-p)
9+{
10+ "buffer_font_family": "JetBrainsMono Nerd Font Mono",
11+ "ui_font_size": 16,
12+ "buffer_font_size": 16.0,
13+ "base_keymap": "JetBrains",
14+ "theme": {
15+ "mode": "system",
16+ "light": "One Light",
17+ "dark": "JetBrains Dark",
18+ },
19+}