dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

settings.json (1242B)


      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 the `open default settings` command
      8 // from the command palette or from `Zed` application menu.
      9 {
     10   "features": {
     11     "edit_prediction_provider": "zed"
     12   },
     13   "assistant": {
     14     "default_model": {
     15       "provider": "zed.dev",
     16       "model": "claude-3-5-sonnet-latest"
     17     },
     18     "version": "2"
     19   },
     20   "theme": "Ayu Mirage",
     21   "ui_font_size": 15,
     22   "buffer_font_family": "SF Mono",
     23   "buffer_font_size": 14,
     24   "buffer_font_features": {
     25     "calt": false
     26   },
     27   "file_types": {
     28     "C": ["c", "m"],
     29     "C++": ["cc", "cpp", "mm"]
     30   },
     31   "language_overrides": {
     32     "Dart": {
     33       "format_on_save": "off",
     34       "use_on_type_format": false
     35     }
     36   },
     37   "tab_size": 2,
     38   "vim": {
     39     // "always": use system clipboard
     40     // "never": don't use system clipboard
     41     // "on_yank": use system clipboard for yank operations
     42     "use_system_clipboard": "always",
     43     // Lets `f` and `t` motions extend across multiple lines
     44     "use_multiline_find": true
     45   },
     46   // Whether to enable vim modes and key bindings
     47   "vim_mode": true
     48 }