last linux update

This commit is contained in:
2025-12-21 23:00:19 +01:00
parent b1427149c8
commit 5efe72e2d7

View File

@@ -3,306 +3,310 @@
// │- author: Daniel Heras Quesada -│ // │- author: Daniel Heras Quesada -│
// ╰────────────────────────────────╯ // ╰────────────────────────────────╯
{ {
// ╭─────────╮ // ╭─────────╮
// │ General │ // │ General │
// ╰─────────╯ // ╰─────────╯
"auto_update_extensions": { "auto_update_extensions": {
"flat-theme": false "flat-theme": false
}, },
"auto_update": true, "auto_update": true,
"base_keymap": "VSCode", "base_keymap": "VSCode",
"restore_on_startup": "last_session", "restore_on_startup": "last_session",
// ╭─────────╮ // ╭─────────╮
// │ Styling │ // │ Styling │
// ╰─────────╯ // ╰─────────╯
"icon_theme": "Bearded Icon Theme", "icon_theme": "Bearded Icon Theme",
"theme": "Repose dark", "theme": "Ayu Mirage",
"unnecessary_code_fade": 0.2, "unnecessary_code_fade": 0.2,
// ╭──────╮ // ╭──────╮
// │ Font │ // │ Font │
// ╰──────╯ // ╰──────╯
"ui_font_size": 14, "ui_font_size": 10.0,
"ui_font_family": "JetBrainsMonoNL Nerd Font Mono", "ui_font_family": "JetBrainsMonoNL Nerd Font Mono",
"buffer_font_size": 15.0, "buffer_font_size": 10.0,
"buffer_font_family": "JetBrainsMonoNL Nerd Font Mono", "buffer_font_family": "JetBrainsMonoNL Nerd Font Mono",
"buffer_font_weight": 400, "buffer_font_weight": 400,
"buffer_line_height": "comfortable", "buffer_line_height": "comfortable",
// ╭────────╮ // ╭────────╮
// │ Editor │ // │ Editor │
// ╰────────╯ // ╰────────╯
"always_treat_brackets_as_autoclosed": false, "always_treat_brackets_as_autoclosed": false,
"autosave": "off", "autosave": "off",
"autoscroll_on_clicks": true, "autoscroll_on_clicks": true,
"confirm_quit": false, "confirm_quit": false,
"current_line_highlight": "all", "current_line_highlight": "all",
"cursor_blink": true, "cursor_blink": true,
"cursor_shape": "bar", "cursor_shape": "bar",
"features": { "features": {
"edit_prediction_provider": "none" "edit_prediction_provider": "none"
}, },
"tab_size": 4, // May cause errors on colaborative projects wrongly configured "tab_size": 4, // May cause errors on colaborative projects wrongly configured
"git": { "git": {
"git_gutter": "tracked_files", "git_gutter": "tracked_files",
"inline_blame": { "inline_blame": {
"enabled": true, "enabled": true,
"show_commit_summary": true "show_commit_summary": true
} }
}, },
"hard_tabs": false, "hard_tabs": true,
"hover_popover_enabled": true, "hover_popover_enabled": true,
"hover_popover_delay": 0, "hover_popover_delay": 0,
"indent_guides": { "indent_guides": {
"enabled": true, "enabled": true,
"line_width": 1, "line_width": 1,
"active_line_width": 2, "active_line_width": 2,
"coloring": "fixed", "coloring": "fixed",
"background_coloring": "disabled" "background_coloring": "disabled"
}, },
"inlay_hints": { "inlay_hints": {
"enabled": false, "enabled": false,
"show_type_hints": true, "show_type_hints": true,
"show_parameter_hints": true, "show_parameter_hints": true,
"show_other_hints": true, "show_other_hints": true,
"show_background": false, "show_background": false,
"edit_debounce_ms": 700, "edit_debounce_ms": 700,
"scroll_debounce_ms": 50 "scroll_debounce_ms": 50
}, },
"selection_highlight": true, "selection_highlight": true,
"show_wrap_guides": true, "show_wrap_guides": true,
"show_call_status_icon": true, "show_call_status_icon": true,
"show_completions_on_input": true, "show_completions_on_input": true,
"show_whitespaces": "selection", "show_whitespaces": "selection",
"wrap_guides": [80], "wrap_guides": [80],
"relative_line_numbers": true, "relative_line_numbers": "enabled",
"scrollbar": { "scrollbar": {
"show": "auto", "show": "auto",
"cursors": true, "cursors": true,
"git_diff": true, "git_diff": true,
"search_results": true, "search_results": true,
"selected_text": true, "selected_text": true,
"selected_symbol": true, "selected_symbol": true,
"diagnostics": "all", "diagnostics": "all",
"axes": { "axes": {
"horizontal": false, "horizontal": false,
"vertical": true "vertical": true
} }
}, },
"vim_mode": true, "vim_mode": true,
"soft_wrap": "editor_width", "soft_wrap": "editor_width",
// ╭────────╮ // ╭────────╮
// │ Layout │ // │ Layout │
// ╰────────╯ // ╰────────╯
"agent": { "agent": {
"enabled": false, "enabled": false,
"button": false, "button": false,
"dock": "right", "dock": "right",
"default_width": 640, "default_width": 640,
"default_height": 320, "default_height": 320,
"default_model": { "default_model": {
"provider": "openai", "provider": "openai",
"model": "gpt-4-turbo" "model": "gpt-4-turbo"
} }
}, },
"centered_layout": { "centered_layout": {
"left_padding": 0.2, "left_padding": 0.2,
"right_padding": 0.2 "right_padding": 0.2
}, },
"collaboration_panel": { "collaboration_panel": {
"button": false "button": false
}, },
"chat_panel": { "chat_panel": {
"button": "never" "button": "never"
}, },
"diagnostics": { "diagnostics": {
"button": true, "button": true,
"include_warnings": true, "include_warnings": true,
"inline": { "inline": {
"enabled": true, "enabled": true,
"update_debounce_ms": 150, "update_debounce_ms": 150,
"padding": 4, "padding": 4,
"min_column": 0, "min_column": 0,
"max_severity": null "max_severity": null
}, },
"cargo": null "cargo": null
}, },
"title_bar": { "title_bar": {
"show_branch_icon": true, "show_sign_in": false,
"show_project_items": true, "show_branch_icon": true,
"show_user_picture": true, "show_project_items": true,
"show_branch_name": true "show_user_picture": true,
}, "show_branch_name": true
"minimap": { },
"show": "never", "minimap": {
"thumb": "always", "show": "never",
"thumb_border": "left_open", "thumb": "always",
"current_line_highlight": "all" "thumb_border": "left_open",
}, "current_line_highlight": "all"
"outline_panel": { },
"button": true, "outline_panel": {
"default_width": 240, "button": true,
"dock": "left", "default_width": 240,
"file_icons": true, "dock": "left",
"folder_icons": true, "file_icons": true,
"git_status": true, "folder_icons": true,
"indent_size": 20, "git_status": true,
"auto_reveal_entries": true, "indent_size": 20,
"auto_fold_dirs": true, "auto_reveal_entries": true,
"indent_guides": { "auto_fold_dirs": true,
"show": "never" "indent_guides": {
}, "show": "never"
"scrollbar": { },
"show": null "scrollbar": {
} "show": null
}, }
"preview_tabs": { },
"enabled": false, "preview_tabs": {
"enable_preview_from_file_finder": false, "enabled": false,
"enable_preview_from_code_navigation": false "enable_preview_from_file_finder": false,
}, "enable_preview_from_code_navigation": false
"project_panel": { },
"button": true, "project_panel": {
"default_width": 240, "button": true,
"dock": "left", "default_width": 240,
"entry_spacing": "comfortable", "dock": "left",
"file_icons": true, "entry_spacing": "comfortable",
"folder_icons": true, "file_icons": true,
"git_status": true, "folder_icons": true,
"indent_size": 20, "git_status": true,
"auto_reveal_entries": true, "indent_size": 20,
"auto_fold_dirs": true, "auto_reveal_entries": true,
"scrollbar": { "auto_fold_dirs": true,
"show": null "scrollbar": {
}, "show": null
"indent_guides": { },
"show": "never" "indent_guides": {
} "show": "never"
}, }
// "proxy": "http://127.0.0.1:10809", },
"search": { // "proxy": "http://127.0.0.1:10809",
"whole_word": false, "search": {
"case_sensitive": false, "whole_word": false,
"include_ignored": false, "case_sensitive": false,
"button": true, "include_ignored": false,
"regex": true "button": true,
}, "regex": true
"tab_bar": { },
"show": true, "tab_bar": {
"show_nav_history_buttons": false, "show": true,
"show_tab_bar_buttons": true "show_nav_history_buttons": false,
}, "show_tab_bar_buttons": true
"tabs": { },
"close_position": "right", "tabs": {
"file_icons": true, "close_position": "right",
"git_status": true, "file_icons": true,
"activate_on_close": "left_neighbour", "git_status": true,
"show_close_button": "hover" "activate_on_close": "left_neighbour",
}, "show_close_button": "hover"
"toolbar": { },
"breadcrumbs": true, "toolbar": {
"quick_actions": true "breadcrumbs": true,
}, "quick_actions": true
"telemetry": { },
"diagnostics": false, "telemetry": {
"metrics": false "diagnostics": false,
}, "metrics": false
"terminal": { },
"alternate_scroll": "off", "terminal": {
"blinking": "terminal_controlled", "alternate_scroll": "off",
"copy_on_select": false, "blinking": "terminal_controlled",
"dock": "bottom", "copy_on_select": false,
"detect_venv": { "dock": "bottom",
"on": { "detect_venv": {
"directories": [".env", "env", ".venv", "venv"], "on": {
"activate_script": "default" "directories": [".env", "env", ".venv", "venv"],
} "activate_script": "default"
}, }
"env": { },
"ZED": "1", "env": {
"EXAMPLE": "test:dqnid", "ZED": "1",
"BLUEPRINTS_PATHS": "./.blueprints" "EXAMPLE": "test:dqnid",
}, "BLUEPRINTS_PATHS": "./.blueprints"
// "font_family": null, },
"font_features": null, // "font_family": null,
"font_size": 14, "font_features": null,
"line_height": "comfortable", "font_size": 10,
"option_as_meta": true, "line_height": "comfortable",
"button": true, "option_as_meta": true,
"shell": "system", "button": true,
"toolbar": { "shell": "system",
"title": true "toolbar": {
}, "title": true
"scrollbar": { },
"show": "never" "scrollbar": {
}, "show": "never"
"working_directory": "current_project_directory" },
}, "working_directory": "current_project_directory"
// ╭─────╮ },
// │ LSP │ // ╭─────╮
// ╰─────╯ // │ LSP │
"format_on_save": "on", // ╰─────╯
"formatter": "auto", "format_on_save": "on",
"ensure_final_newline_on_save": true, "formatter": "auto",
"enable_language_server": true, "ensure_final_newline_on_save": true,
"use_autoclose": true, "enable_language_server": true,
"languages": { "use_autoclose": true,
"Astro": { "languages": {
"tab_size": 4 "Astro": {
}, "tab_size": 4
"HTML": { },
"tab_size": 2 "HTML": {
}, "tab_size": 2
"JSON": { },
"tab_size": 4 "JSON": {
}, "tab_size": 4
"JavaScript": { },
"formatter": "prettier", "JavaScript": {
"format_on_save": "on", "formatter": "prettier",
"tab_size": 2, "format_on_save": "on",
"preferred_line_length": 65, "tab_size": 2,
"code_actions_on_format": { "preferred_line_length": 65,
"source.organizeImports": true "code_actions_on_format": {
} "source.organizeImports": true
}, }
"TypeScript": { },
"formatter": "prettier", "TypeScript": {
"format_on_save": "on", "formatter": "prettier",
"preferred_line_length": 65, "format_on_save": "on",
"language_servers": ["typescript-language-server", "!vtsls"], "preferred_line_length": 65,
"code_actions_on_format": { "language_servers": ["typescript-language-server", "!vtsls"],
"source.organizeImports": true "code_actions_on_format": {
} "source.organizeImports": true
}, }
"TSX": { },
"formatter": "prettier", "TSX": {
"format_on_save": "on", "formatter": "prettier",
"preferred_line_length": 85, "format_on_save": "on",
"language_servers": ["typescript-language-server", "!vtsls"], "preferred_line_length": 85,
// "formatter": { "language_servers": ["typescript-language-server", "!vtsls"],
// "external": { // "formatter": {
// "command": "prettier", // "external": {
// "arguments": ["--stdin-filepath", "{buffer_path}"] // "command": "prettier",
// } // "arguments": ["--stdin-filepath", "{buffer_path}"]
// }, // }
"code_actions_on_format": { // },
"source.organizeImports": true "code_actions_on_format": {
} "source.organizeImports": true
} }
}, },
"file_types": { "Python": {
"C++": ["c"], "language_servers": ["pylsp", "!basedpyright"]
"TOML": ["MyLockFile"], }
"Dockerfile": ["Dockerfile*"] },
}, "file_types": {
"file_scan_exclusions": [ "C++": ["c"],
"**/.git", "TOML": ["MyLockFile"],
"**/.svn", "Dockerfile": ["Dockerfile*"]
"**/.hg", },
"**/.jj", "file_scan_exclusions": [
"**/CVS", "**/.git",
"**/.DS_Store", "**/.svn",
"**/Thumbs.db", "**/.hg",
"**/.classpath", "**/.jj",
"**/.settings" "**/CVS",
], "**/.DS_Store",
"file_scan_inclusions": [".env*"] "**/Thumbs.db",
"**/.classpath",
"**/.settings"
],
"file_scan_inclusions": [".env*"]
} }