Files
zed-config/settings.json
2025-03-16 17:37:02 +01:00

111 lines
2.4 KiB
JSON

// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette
{
// "base_keymap": "Atom", // default is VSCode
"ssh_connections": [
{
"host": "rocm.pbsds.net",
"projects": [
{
"paths": ["~/ntnu/ifield"]
}
]
}
],
"telemetry": {
"metrics": false
},
"ui_font_size": 16,
"buffer_font_size": 17.0,
"theme": "Railscast",
"use_autoclose": false,
"ui_font_features": {
"calt": false // disable ligatures
},
"buffer_font_features": {
"calt": false // disable ligatures
// "font_family": "Cousine"
},
"seed_search_query_from_cursor": "selection",
"vertical_scroll_margin": 5,
"wrap_guides": [80],
"tabs": {
"activate_on_close": "left_neighbour", // default is 'history'
"file_icons": true
},
"indent_guides": {
// "coloring": "indent_aware"
// "coloring": "fixed"
"coloring": "disabled"
},
"project_panel": {
"indent_size": 10,
"indent_guides": {
"show": "never"
}
},
"git": {
// I like it, but it is too slow https://github.com/zed-industries/zed/issues/13547
"inline_blame": { "enabled": false }
},
"preview_tabs": {
// Those annoying tabs that close themselves
// I'd like more control over what is made ino a preview and not
"enabled": false
},
"node": {
"ignore_system_version": false,
},
"auto_install_extensions": {
// "railcast": true,
"cython": true,
"docker-compose": true,
"dockerfile": true,
"glsl": true,
"graphviz": true,
"harper": true,
"haskell": true,
"html": true,
"ini": true,
"java": true,
"jinja2": true,
"just": true,
"kotlin": true,
"latex": true,
"lua": true,
"make": true,
"neocmake": true,
"nix": true,
"proto": true,
"pylsp": true,
"scala": true,
"toml": true,
"typos": true,
"typst": true,
"verilog": true,
"vhdl": true,
},
"languages": {
"Nix": {
"tab_size": 2
}
},
"lsp": {
"typos": {
"initialization_options": {
// bundled binary is dynamically linked
"path": "typos-lsp",
},
},
},
"file_types": {
"CMake": ["CMakeLists.txt"]
}
}