commit 69ef39dc4539ac642dbe97cb4cc4b4b7f909baa6 Author: Jacob Date: Sun Sep 28 15:08:24 2025 -0400 Initial commit. diff --git a/ghostty/config b/ghostty/config new file mode 100644 index 0000000..a5830e0 --- /dev/null +++ b/ghostty/config @@ -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 diff --git a/zed/settings.json b/zed/settings.json new file mode 100644 index 0000000..0296cfe --- /dev/null +++ b/zed/settings.json @@ -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" + } +}