dotfiles

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

settings.json (1041B)


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