Initial commit.

This commit is contained in:
2025-09-28 15:08:24 -04:00
commit 69ef39dc45
2 changed files with 69 additions and 0 deletions

9
ghostty/config Normal file
View File

@@ -0,0 +1,9 @@
# Font stuff.
font-family = Iosevka Term
font-family = MotoyaLMaru
# Theme stuff.
theme = dark:Gruvbox Dark,light:Gruvbox Light
# Misc.
window-decoration = auto

60
zed/settings.json Normal file
View File

@@ -0,0 +1,60 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"icon_theme": "Zed (Default)",
"agent": {
"always_allow_tool_actions": true,
"default_model": {
"provider": "zed.dev",
"model": "claude-sonnet-4"
}
},
"features": {
"edit_prediction_provider": "none"
},
"outline_panel": {
"dock": "right"
},
"vim_mode": true,
"ui_font_size": 14,
"ui_font_family": "Iosevka",
"ui_font_fallbacks": ["MotoyaLMaru"],
"buffer_font_size": 14,
"buffer_font_family": "Iosevka",
"buffer_font_fallbacks": ["MotoyaLMaru"],
"languages": {
"Java": {
"formatter": {
"external": {
"command": "clang-format",
"arguments": ["--style=file", "--assume-filename={buffer_path}"]
}
},
"format_on_save": "on"
},
"R": {
"tab_size": 2
},
"C": {
"formatter": {
"external": {
"command": "clang-format",
"arguments": ["--style=file", "--assume-filename={buffer_path}"]
}
},
"format_on_save": "on"
}
},
"wrap_guides": [80],
"theme": {
"mode": "system",
"light": "Gruvbox Improved Light",
"dark": "Gruvbox Improved Dark"
}
}