dotfiles

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

settings.json (900B)


      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_size": 15,
     13   "buffer_font_features": {
     14     "calt": false
     15   },
     16   "language_overrides": {
     17     "dart": {
     18       "format_on_save": "off",
     19       "tab_size": 2
     20     }
     21   },
     22   "vim": {
     23     // "always": use system clipboard
     24     // "never": don't use system clipboard
     25     // "on_yank": use system clipboard for yank operations
     26     "use_system_clipboard": "always",
     27     // Lets `f` and `t` motions extend across multiple lines
     28     "use_multiline_find": true
     29   },
     30   // Whether to enable vim modes and key bindings
     31   "vim_mode": true
     32 }