update zed settings & tasks
This commit is contained in:
@@ -7,17 +7,33 @@
|
|||||||
// custom settings, run `zed: open default settings` from the
|
// custom settings, run `zed: open default settings` from the
|
||||||
// command palette (cmd-shift-p / ctrl-shift-p)
|
// command palette (cmd-shift-p / ctrl-shift-p)
|
||||||
{
|
{
|
||||||
"ui_font_size": 15.0,
|
"diagnostics": {
|
||||||
"buffer_font_weight": 400.0,
|
"inline": {
|
||||||
"drag_and_drop_selection": {
|
"enabled": true
|
||||||
"delay": 0,
|
}
|
||||||
"enabled": true,
|
|
||||||
},
|
},
|
||||||
|
"ui_font_size": 16.0,
|
||||||
|
"show_edit_predictions": false,
|
||||||
|
"relative_line_numbers": "disabled",
|
||||||
|
"edit_predictions": {
|
||||||
|
"provider": "none"
|
||||||
|
},
|
||||||
|
"remove_trailing_whitespace_on_save": false,
|
||||||
|
"inline_code_actions": true,
|
||||||
|
"gutter": {
|
||||||
|
"breakpoints": true,
|
||||||
|
"line_numbers": true,
|
||||||
|
},
|
||||||
|
"drag_and_drop_selection": {
|
||||||
|
"delay": 100,
|
||||||
|
},
|
||||||
|
"buffer_line_height": "comfortable",
|
||||||
"terminal": {
|
"terminal": {
|
||||||
"font_family": ".ZedMono",
|
"font_family": ".ZedMono",
|
||||||
|
"font_size": 15.0,
|
||||||
"detect_venv": "off",
|
"detect_venv": "off",
|
||||||
"font_size": 14,
|
|
||||||
},
|
},
|
||||||
|
"show_wrap_guides": true,
|
||||||
"title_bar": {
|
"title_bar": {
|
||||||
"show_sign_in": false,
|
"show_sign_in": false,
|
||||||
},
|
},
|
||||||
@@ -33,31 +49,25 @@
|
|||||||
"debugger": {
|
"debugger": {
|
||||||
"dock": "bottom",
|
"dock": "bottom",
|
||||||
},
|
},
|
||||||
"edit_predictions": {
|
|
||||||
"mode": "subtle",
|
|
||||||
"copilot": {
|
|
||||||
"proxy": null,
|
|
||||||
"proxy_no_verify": null,
|
|
||||||
},
|
|
||||||
"enabled_in_text_threads": false,
|
|
||||||
},
|
|
||||||
"telemetry": {
|
"telemetry": {
|
||||||
"diagnostics": false,
|
"diagnostics": false,
|
||||||
"metrics": false,
|
"metrics": false,
|
||||||
},
|
},
|
||||||
"base_keymap": "VSCode",
|
"base_keymap": "VSCode",
|
||||||
|
"buffer_font_features": {
|
||||||
|
"calt": false,
|
||||||
|
// "NWID": true
|
||||||
|
},
|
||||||
"buffer_font_family": "Iosevka Terminal Wide",
|
"buffer_font_family": "Iosevka Terminal Wide",
|
||||||
"buffer_font_size": 14,
|
|
||||||
"buffer_line_height": "comfortable",
|
|
||||||
"project_panel": {
|
"project_panel": {
|
||||||
"default_width": 280.0,
|
"default_width": 280.0,
|
||||||
"scrollbar": {
|
"scrollbar": {
|
||||||
"show": "never",
|
"show": "never",
|
||||||
}
|
},
|
||||||
|
"entry_spacing": "standard",
|
||||||
},
|
},
|
||||||
"tab_size": 4,
|
"tab_size": 4,
|
||||||
"format_on_save": "off",
|
"format_on_save": "off",
|
||||||
"remove_trailing_whitespace_on_save": false,
|
|
||||||
"ensure_final_newline_on_save": false,
|
"ensure_final_newline_on_save": false,
|
||||||
// "preferred_line_length": 80,
|
// "preferred_line_length": 80,
|
||||||
"soft_wrap": "editor_width",
|
"soft_wrap": "editor_width",
|
||||||
@@ -69,19 +79,7 @@
|
|||||||
"collaboration_panel": {
|
"collaboration_panel": {
|
||||||
"button": false,
|
"button": false,
|
||||||
},
|
},
|
||||||
"agent": {
|
|
||||||
"enabled": false,
|
|
||||||
},
|
|
||||||
"features": {
|
|
||||||
// "copilot": false,
|
|
||||||
"edit_prediction_provider": "none",
|
|
||||||
},
|
|
||||||
// "vim_mode": true,
|
// "vim_mode": true,
|
||||||
"languages": {
|
|
||||||
"Haskell": {
|
|
||||||
"tab_size": 2,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
////// LSP config //////
|
////// LSP config //////
|
||||||
"lsp": {
|
"lsp": {
|
||||||
"texlab": {
|
"texlab": {
|
||||||
@@ -105,4 +103,23 @@
|
|||||||
"file_types": {
|
"file_types": {
|
||||||
"Cython": ["sage"],
|
"Cython": ["sage"],
|
||||||
},
|
},
|
||||||
|
"languages": {
|
||||||
|
"LaTeX": {
|
||||||
|
"show_edit_predictions": false
|
||||||
|
},
|
||||||
|
"Haskell": {
|
||||||
|
"tab_size": 2,
|
||||||
|
"hard_tabs": false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"theme_overrides": {
|
||||||
|
"One Light": {
|
||||||
|
"syntax": {
|
||||||
|
"link_text": {
|
||||||
|
"font_style": "normal"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,53 +7,123 @@
|
|||||||
// custom settings, run `zed: open default settings` from the
|
// custom settings, run `zed: open default settings` from the
|
||||||
// command palette (cmd-shift-p / ctrl-shift-p)
|
// command palette (cmd-shift-p / ctrl-shift-p)
|
||||||
{
|
{
|
||||||
"edit_predictions": {
|
"show_edit_predictions": false,
|
||||||
"mode": "subtle",
|
"relative_line_numbers": "disabled",
|
||||||
"copilot": {
|
"agent": {
|
||||||
"proxy": null,
|
"default_model": {
|
||||||
"proxy_no_verify": null
|
"provider": "copilot_chat",
|
||||||
|
"model": "gpt-5-mini"
|
||||||
},
|
},
|
||||||
"enabled_in_text_threads": false
|
"favorite_models": [],
|
||||||
|
"model_parameters": []
|
||||||
|
},
|
||||||
|
"edit_predictions": {
|
||||||
|
"mode": "eager",
|
||||||
|
"provider": "copilot"
|
||||||
|
},
|
||||||
|
"remove_trailing_whitespace_on_save": false,
|
||||||
|
"inline_code_actions": true,
|
||||||
|
"gutter": {
|
||||||
|
"breakpoints": true,
|
||||||
|
"line_numbers": true,
|
||||||
|
},
|
||||||
|
"drag_and_drop_selection": {
|
||||||
|
"delay": 100,
|
||||||
|
},
|
||||||
|
"buffer_line_height": "comfortable",
|
||||||
|
"terminal": {
|
||||||
|
"font_family": ".ZedMono",
|
||||||
|
"font_size": 15.0,
|
||||||
|
"detect_venv": "off",
|
||||||
|
},
|
||||||
|
"show_wrap_guides": true,
|
||||||
|
"title_bar": {
|
||||||
|
"show_sign_in": false,
|
||||||
|
},
|
||||||
|
"git_panel": {
|
||||||
|
"default_width": 320.0,
|
||||||
|
},
|
||||||
|
"outline_panel": {
|
||||||
|
"default_width": 320.0,
|
||||||
|
},
|
||||||
|
"notification_panel": {
|
||||||
|
"dock": "right",
|
||||||
|
},
|
||||||
|
"debugger": {
|
||||||
|
"dock": "bottom",
|
||||||
},
|
},
|
||||||
"telemetry": {
|
"telemetry": {
|
||||||
"diagnostics": false,
|
"diagnostics": false,
|
||||||
"metrics": false
|
"metrics": false,
|
||||||
},
|
},
|
||||||
"base_keymap": "VSCode",
|
"base_keymap": "VSCode",
|
||||||
"ui_font_size": 16,
|
"ui_font_size": 16,
|
||||||
"buffer_font_size": 16,
|
"buffer_font_features": {
|
||||||
"theme": {
|
"calt": false,
|
||||||
"mode": "system",
|
// "NWID": true
|
||||||
"light": "One Light",
|
|
||||||
"dark": "One Dark"
|
|
||||||
},
|
},
|
||||||
"buffer_font_family": "CaskaydiaCove Nerd Font",
|
"buffer_font_family": "Iosevka Terminal Wide",
|
||||||
"toolbar": {
|
"project_panel": {
|
||||||
"breadcrumbs": false,
|
"default_width": 320.0,
|
||||||
"quick_actions": false
|
"scrollbar": {
|
||||||
|
"show": "never",
|
||||||
},
|
},
|
||||||
"terminal": {
|
"entry_spacing": "standard",
|
||||||
"toolbar": {
|
|
||||||
"breadcrumbs": false
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
"tab_size": 4,
|
||||||
"format_on_save": "off",
|
"format_on_save": "off",
|
||||||
|
"ensure_final_newline_on_save": false,
|
||||||
// "preferred_line_length": 80,
|
// "preferred_line_length": 80,
|
||||||
"soft_wrap": "editor_width",
|
"soft_wrap": "editor_width",
|
||||||
"git": {
|
"git": {
|
||||||
"inline_blame": {
|
"inline_blame": {
|
||||||
"enabled": false
|
"enabled": false,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
"collaboration_panel": {
|
"collaboration_panel": {
|
||||||
"button": false
|
"button": false,
|
||||||
},
|
},
|
||||||
"assistant": {
|
// "vim_mode": true,
|
||||||
"enabled": false,
|
////// LSP config //////
|
||||||
"version": "2"
|
"lsp": {
|
||||||
|
"texlab": {
|
||||||
|
"settings": {
|
||||||
|
"texlab": {
|
||||||
|
"build": {
|
||||||
|
"onSave": true,
|
||||||
|
"forwardSearchAfter": false,
|
||||||
},
|
},
|
||||||
"features": {
|
},
|
||||||
"copilot": false,
|
},
|
||||||
"inline_completion_provider": "none"
|
},
|
||||||
|
"clangd": {
|
||||||
|
"binary": {
|
||||||
|
"ignore_system_version": true,
|
||||||
|
"path": "/opt/homebrew/opt/llvm/bin/clangd",
|
||||||
|
"arguments": [],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"file_types": {
|
||||||
|
"Cython": ["sage"],
|
||||||
|
},
|
||||||
|
"languages": {
|
||||||
|
"LaTeX": {
|
||||||
|
"show_edit_predictions": false
|
||||||
|
},
|
||||||
|
"Haskell": {
|
||||||
|
"tab_size": 2,
|
||||||
|
"hard_tabs": false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"theme_overrides": {
|
||||||
|
"One Light": {
|
||||||
|
"syntax": {
|
||||||
|
"link_text": {
|
||||||
|
"font_style": "normal"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"label": "forward_search",
|
"label": "forward_search",
|
||||||
"command": "/Applications/Skim.app/Contents/SharedSupport/displayline -g $ZED_ROW $ZED_DIRNAME/$ZED_STEM.pdf",
|
"command": "/Applications/Skim.app/Contents/SharedSupport/displayline -g $ZED_ROW \"$ZED_DIRNAME/$ZED_STEM.pdf\"",
|
||||||
"allow_concurrent_runs": false,
|
"allow_concurrent_runs": false,
|
||||||
"reveal": "never",
|
"reveal": "never",
|
||||||
"hide": "always"
|
"hide": "always"
|
||||||
|
|||||||
Reference in New Issue
Block a user