···11+# Settings for a few things I use that don't sync between devices?
22+- Zed
33+- Ghostty
+33
ghostty/config
···11+# This is the configuration file for Ghostty.
22+#
33+# This template file has been automatically created at the following
44+# path since Ghostty couldn't find any existing config files on your system:
55+#
66+# /Users/baileytownsend/Library/Application Support/com.mitchellh.ghostty/config
77+#
88+# The template does not set any default options, since Ghostty ships
99+# with sensible defaults for all options. Users should only need to set
1010+# options that they want to change from the default.
1111+#
1212+# Run `ghostty +show-config --default --docs` to view a list of
1313+# all available config options and their default values.
1414+#
1515+# Additionally, each config option is also explained in detail
1616+# on Ghostty's website, at https://ghostty.org/docs/config.
1717+#
1818+# Ghostty can reload the configuration while running by using the menu
1919+# options or the bound key (default: Command + Shift + comma on macOS and
2020+# Control + Shift + comma on other platforms). Not all config options can be
2121+# reloaded while running; some only apply to new windows and others may require
2222+# a full restart to take effect.
2323+2424+# Config syntax crash course
2525+# ==========================
2626+# # The config file consists of simple key-value pairs,
2727+# # separated by equals signs.
2828+2929+theme = Dracula
3030+font-size = 17
3131+window-height = 30
3232+window-width = 120
3333+shell-integration-features= title,ssh-env
+19
zed/settings.json
···11+// Zed settings
22+//
33+// For information on how to configure Zed, see the Zed
44+// documentation: https://zed.dev/docs/configuring-zed
55+//
66+// To see all of Zed's default settings without changing your
77+// custom settings, run `zed: open default settings` from the
88+// command palette (cmd-shift-p / ctrl-shift-p)
99+{
1010+ "buffer_font_family": "JetBrainsMono Nerd Font Mono",
1111+ "ui_font_size": 16,
1212+ "buffer_font_size": 16.0,
1313+ "base_keymap": "JetBrains",
1414+ "theme": {
1515+ "mode": "system",
1616+ "light": "One Light",
1717+ "dark": "JetBrains Dark",
1818+ },
1919+}