[READ-ONLY] Mirror of https://github.com/plttn/dotfiles.
0

Configure Feed

Select the types of activity you want to include in your feed.

Update .config/lx/config.toml Update .config/mise/config.toml Update .config/zed/settings.json

Jack Platten (May 4, 2026, 10:22 AM -0700) f19be6a2 67d6aad1

+68 -16
+19 -2
private_dot_config/lx/config.toml
··· 64 64 group-dirs = "none" # first / last / none 65 65 icons = "never" # always / auto / never 66 66 classify = "auto" # always / auto / never 67 - theme = "lx-24bit" # named theme (see below) 68 - smooth = true 67 + # theme = "lx-24bit" # named theme (see below) 68 + #smooth = true 69 + [[personality.default.when]] 70 + env.TERM = "*-256color" # glob match — any 256-colour terminfo 71 + theme = "lx-256" 72 + 73 + [[personality.default.when]] 74 + env.COLORTERM = ["truecolor", "24bit"] # array — any element matches 75 + theme = "lx-24bit" 76 + 77 + ## On macOS, listxattr is disproportionately expensive (it dominates 78 + ## tree traversal time on APFS). Disable the `@` indicator probe by 79 + ## default; users who want the indicator can override per-personality 80 + ## with `xattr-indicator = true`, or pass `-l@` per invocation. 81 + 82 + [[personality.default.when]] 83 + platform = "macos" 84 + xattr-indicator = false 85 + 69 86 70 87 ## The "lx" personality applies when the binary is invoked as "lx". 71 88 [personality.lx]
-1
private_dot_config/mise/config.toml
··· 2 2 node = "20" 3 3 go = "latest" 4 4 usage = "latest" 5 - 1password = "latest" 6 5 python = "latest" 7 6 pnpm = "10" 8 7 rust = "1.92.0"
+49 -13
private_dot_config/zed/private_settings.json
··· 7 7 // custom settings, run the `open default settings` command 8 8 // from the command palette or from `Zed` application menu. 9 9 { 10 + "agent_servers": { 11 + "github-copilot-cli": { 12 + "type": "registry" 13 + } 14 + }, 15 + "cli_default_open_behavior": "existing_window", 16 + "buffer_font_size": 12.0, 10 17 "theme": "Monokai Pro (CE)", 11 - "icon_theme": "Zed (Default)", 18 + "icon_theme": "Bearded Icon Theme", 12 19 "project_panel": { 13 - "dock": "left" 20 + "dock": "right" 14 21 }, 15 22 "outline_panel": { 16 23 "dock": "right" ··· 19 26 "dock": "right" 20 27 }, 21 28 "git_panel": { 22 - "dock": "left" 29 + "dock": "right" 23 30 }, 24 31 "ui_font_weight": 400.0, 25 - "ui_font_size": 16.0, 26 32 "ui_font_family": ".ZedSans", 27 33 "edit_predictions": { 34 + "mode": "eager", 28 35 "copilot": { 29 36 "enable_next_edit_suggestions": true 30 37 }, 31 - "provider": "copilot", 38 + "provider": "zed", 32 39 }, 33 40 "buffer_line_height": "standard", 34 41 "git": { ··· 43 50 "autosave": "on_window_change", 44 51 "multi_cursor_modifier": "cmd_or_ctrl", 45 52 "minimap": { 53 + "show": "always", 46 54 "current_line_highlight": "all", 47 55 "thumb": "always", 48 - "show": "always", 49 56 }, 50 57 "current_line_highlight": "all", 51 58 "cursor_blink": true, 52 59 "agent": { 53 - "sidebar_side": "right", 54 - "dock": "right", 60 + "profiles": { 61 + 62 + }, 63 + "favorite_models": [ 64 + { 65 + "provider": "zed.dev", 66 + "model": "gpt-5-mini", 67 + "enable_thinking": false 68 + }, 69 + { 70 + "provider": "zed.dev", 71 + "model": "claude-sonnet-4-6", 72 + "enable_thinking": true, 73 + "effort": "medium" 74 + }, 75 + { 76 + "provider": "zed.dev", 77 + "model": "claude-haiku-4-5", 78 + "enable_thinking": false 79 + }, 80 + { 81 + "provider": "zed.dev", 82 + "model": "grok-code-fast-1", 83 + "enable_thinking": false 84 + }, 85 + { 86 + "provider": "zed.dev", 87 + "model": "gpt-5-nano", 88 + "enable_thinking": false 89 + } 90 + ], 91 + "sidebar_side": "left", 92 + "dock": "left", 55 93 "tool_permissions": { 56 94 "default": "allow" 57 95 }, 58 - "default_profile": "write", 96 + "default_profile": "minimal", 59 97 "button": true, 60 98 "enabled": true, 61 99 "default_model": { 62 - "provider": "copilot_chat", 100 + "enable_thinking": false, 101 + "provider": "zed.dev", 63 102 "model": "gpt-5-mini", 64 103 }, 65 104 }, 66 105 "base_keymap": "VSCode", 67 106 // "ui_font_size": 14, 68 - "buffer_font_size": 12, 69 107 "buffer_font_family": "Berkeley Mono", 70 108 "buffer_font_fallbacks": ["Symbols Nerd Font Mono"], 71 109 "buffer_font_features": { "calt": false }, 72 110 "inlay_hints": { 73 111 "enabled": true, 74 - "show_type_hints": false, 75 - "show_parameter_hints": true, 76 112 "show_other_hints": true, 77 113 }, 78 114 "tabs": {