dotfiles

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

settings.json (1183B)


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