Daily auto-commit 2026-06-13T04:12:42UTC @ nord

This commit is contained in:
2026-06-13 06:12:42 +02:00
parent 21f8175c64
commit c08f948c83
+52 -54
View File
@@ -10,18 +10,18 @@
// "base_keymap": "Atom", // default is VSCode, TODO: try to switch
"cli_default_open_behavior": "new_window",
"outline_panel": {
"dock": "left"
"dock": "left",
},
"collaboration_panel": {
"dock": "left"
"dock": "left",
},
"agent": {
"dock": "right",
"favorite_models": [],
"model_parameters": []
"model_parameters": [],
},
"git_panel": {
"dock": "left"
"dock": "left",
},
"ssh_connections": [
{
@@ -29,31 +29,25 @@
"args": [],
"projects": [
{
"paths": [
"~/ntnu/ifield"
]
"paths": ["~/ntnu/ifield"],
},
{
"paths": [
"~/ntnu/papers/"
]
}
]
"paths": ["~/ntnu/papers/"],
},
],
},
{
"host": "nord",
"args": [],
"projects": [
{
"paths": [
"/home/pbsds/repos/nixpkgs/tmp-bump/pulsar-1772391515"
]
}
]
}
"paths": ["/home/pbsds/repos/nixpkgs/tmp-bump/pulsar-1772391515"],
},
],
},
],
"telemetry": {
"metrics": false
"metrics": false,
},
"ui_font_size": 16,
"buffer_font_size": 17.0,
@@ -63,13 +57,13 @@
"liga": false,
"ss02": false,
"zero": false,
"calt": false // disable ligatures
"calt": false, // disable ligatures
},
"buffer_font_features": {
"liga": false,
"ss02": false,
"zero": false,
"calt": false // disable ligatures
"calt": false, // disable ligatures
// "font_family": "Cousine"
},
"use_system_path_prompts": false, // ctrl-o becomes way better, works remotely
@@ -78,37 +72,37 @@
"wrap_guides": [80],
"tabs": {
"activate_on_close": "left_neighbour", // default is 'history'
"file_icons": true
"file_icons": true,
},
"indent_guides": {
// "coloring": "indent_aware"
// "coloring": "fixed"
"coloring": "disabled"
"coloring": "disabled",
},
"project_panel": {
"dock": "left",
"hide_gitignore": true,
"indent_size": 10,
"indent_guides": {
"show": "never"
}
"show": "never",
},
},
"git": {
"disable_git": false,
// I like it, but it is too slow https://github.com/zed-industries/zed/issues/13547
"inline_blame": {
"enabled": false
}
"enabled": false,
},
},
"format_on_save": "off",
"preview_tabs": {
// Those annoying tabs that close themselves
"enabled": false
"enabled": false,
// "enable_preview_from_code_navigation": true,
// "enable_preview_from_file_finder": false
},
"node": {
"ignore_system_version": false
"ignore_system_version": false,
},
"auto_install_extensions": {
"railscast": true,
@@ -117,6 +111,7 @@
"docker-compose": true,
"dockerfile": true,
"glsl": true,
"kdl": true,
"graphviz": true,
"harper": true,
"haskell": true,
@@ -141,14 +136,17 @@
// "vale": true,
"verilog": true,
"vhdl": true,
"zig": true
"zig": true,
},
"languages": {
"JSONC": {
"format_on_save": "on"
"format_on_save": "on",
},
"kdl": {
"tab_size": 2,
},
"Jinja2": {
"tab_size": 2
"tab_size": 2,
},
// "Python": {
// "language_servers": ["pylsp", "!pyright", "!basedpyright"]
@@ -156,7 +154,7 @@
// // "preferred_line_length": 120
// },
"Nix": {
"tab_size": 2
"tab_size": 2,
// "format_on_save": "off"
},
"Just": {
@@ -165,24 +163,24 @@
"command": "bash",
"arguments": [
"-c",
"t=\"$(mktemp)\"; cat >\"$t\"; just --unstable --fmt --justfile \"$t\"; cat \"$t\"; rm \"$t\";"
]
}
}
"t=\"$(mktemp)\"; cat >\"$t\"; just --unstable --fmt --justfile \"$t\"; cat \"$t\"; rm \"$t\";",
],
},
},
},
"Shell Script": {
"tab_size": 2,
"formatter": {
"external": {
"command": "shfmt",
"arguments": ["--indent=2", "--filename", "{buffer_path}"]
}
}
"arguments": ["--indent=2", "--filename", "{buffer_path}"],
},
},
},
"TOML": {
// TODO: fix lsp config in zed
// "format_on_save": "off"
}
},
},
// https://zed.dev/docs/configuring-zed#lsp
"lsp": {
@@ -225,25 +223,25 @@
"typos": {
"initialization_options": {
// bundled binary is dynamically linked
"path": "typos-lsp"
}
"path": "typos-lsp",
},
},
"taplo": {
// https://taplo.tamasfe.dev/configuration/formatter-options.html
// TODO: this causes error?
"settings": {
// "formatting": {
"align_comments": false
"align_comments": false,
// }
}
},
},
"nil": {
"initialization_options": {
"formatting": {
"command": ["nixfmt"]
}
"command": ["nixfmt"],
},
// bundled binary is dynamically linked
}
},
},
"harper": {
"initialization_options": {
@@ -254,18 +252,18 @@
// "SentenceCapitalization": true,
// "UnclosedQuotes": true,
// "WrongQuotes": false,
"LongSentences": false
"LongSentences": false,
// "RepeatedWords": true,
// "Spaces": true,
// "Matcher": true,
// "CorrectNumberSuffix": true,
}
}
}
},
},
},
},
"file_types": {
"Shell Script": [".env.*", ".envrc"],
"CMake": ["CMakeLists.txt"],
"Make": ["*.make"]
}
"Make": ["*.make"],
},
}