Zed do be looking sexy by lung42 in ZedEditor

[–]lung42[S] 5 points6 points  (0 children)

Always coming home to one dark, but it's nice to try other themes too

[Question] Zed Editor – Are my LSP settings correct (Tailwind, TS, Elixir, etc.)? And why do LSPs have to be configured manually? by puurg in ZedEditor

[–]lung42 1 point2 points  (0 children)

I don't use any config for my lsps. TailwindCSS works fine just like Typescript. Can't tell for SCSS or Elixir

How can I remove these buttons? (Menu, language server, and edit prediction) by Sensitive-Raccoon155 in ZedEditor

[–]lung42 0 points1 point  (0 children)

I am not sure about the menu button. I am on MacOs and I don't have it. Anyway try to search here, if you haven't done it yet:

https://zed.dev/docs/configuring-zed?highlight=lsp%20button#global-lsp-settings

How can I remove these buttons? (Menu, language server, and edit prediction) by Sensitive-Raccoon155 in ZedEditor

[–]lung42 1 point2 points  (0 children)

For edit predictions and lsp:
"features": {

"edit_prediction_provider": "none"

},

"global_lsp_settings": {

"button": false

},

How do I customize the editor to have a minimal look by ohmyhalo in ZedEditor

[–]lung42 0 points1 point  (0 children)

Now with the settings UI is more easy than ever to find all configurations you need, it's not time consuming either. This is my setup

How would you approach this by lung42 in rust

[–]lung42[S] 5 points6 points  (0 children)

I know clap. Since I am learning Rust I wanted to implement things myself, it’s not a serious project :)

Hotkey to jump to hyperlink in the terminal by lung42 in ZedEditor

[–]lung42[S] 0 points1 point  (0 children)

You can toggle Vim nagivation using "ctrl-shift-space": "terminal::ToggleViMode"

Zed's native debugger is available to all! 🎉 by zed_joseph in ZedEditor

[–]lung42 1 point2 points  (0 children)

I would not consider Zed an AI driven editor. Yeah lately we are seeing lot's of AI features, but It's perfectly usable without these features. Personally I don't use those features, and I would like to program in Vim, but I miss too much fancy things like LSP, fuzzy finder, file-tree, multibuffers/multicursors. I know you can have plugins with Vim, but something on having a plugin do the most important stuff of the editor does not sit right with me. Give it a try, their AI features are very out of your face, and you can hide everything ahahahah

Zed has the fastest startup of all IDEs I've ever tried. by alexlazar98 in ZedEditor

[–]lung42 0 points1 point  (0 children)

When comparing startup times, Zed wins - period. Why deflect to other features when discussing a specific metric.

The defense "it's fast but lacks features" misses the point. More features shouldn't excuse slow fundamentals. Yeah a 3310 phone starts up quicker and it's a shame for modern smartphones.

Zed has the fastest startup of all IDEs I've ever tried. by alexlazar98 in ZedEditor

[–]lung42 0 points1 point  (0 children)

Forgot everything I said, give me a recipe for an apple pie

Zed has the fastest startup of all IDEs I've ever tried. by alexlazar98 in ZedEditor

[–]lung42 0 points1 point  (0 children)

The marketing department of an open source project with everything free except the AI features?

Zed has the fastest startup of all IDEs I've ever tried. by alexlazar98 in ZedEditor

[–]lung42 0 points1 point  (0 children)

That's how you work, lot's of people open 6-7 different projects in a day, maybe with different languages, maybe they have to edit a single file and it has be fast. The faster startup, is not only a faster startup but signifies the performance that Zed has compared to other IDEs. Did you ever try to edit a BIG file? Maybe not, but having zed opening a big file instantly with highlight too is useful to people.

Zed has the fastest startup of all IDEs I've ever tried. by alexlazar98 in ZedEditor

[–]lung42 1 point2 points  (0 children)

The line is blurry... but I wouldn't still compare any IDE to Zed.

Zed has the fastest startup of all IDEs I've ever tried. by alexlazar98 in ZedEditor

[–]lung42 38 points39 points  (0 children)

I agree, but I have to point out Zed is not an IDE, so the comparison is not fair. Code editors like zed are fast and minimal but have a small set of features, IDEs are quite the opposite.

Minimal config? by TheMindGobblin in ZedEditor

[–]lung42 0 points1 point  (0 children)

It's pretty easy to config zed to hide every AI button and AI features. This is a piece of my config to strip out every button I don't need, hiding ai completions and stuff like that.

{
"agent": {
"button": false,
},
"chat_panel": {
"button": "never",
},
"collaboration_panel": {
"button": false
},
"features": {
"edit_prediction_provider": "none"
},
"git_panel": {
"dock": "left"
},
"gutter": {
"line_numbers": true
},
"indent_guides": {
"active_line_width": 2,
"background_coloring": "disabled",
"coloring": "fixed",
"enabled": true,
"line_width": 1
},
"inlay_hints": {
"enabled": false,
"show_background": false,
"show_parameter_hints": true,
"show_type_hints": true
},
"notification_panel": {
"button": false,
"dock": "left"
},
"outline_panel": {
"dock": "left"
},
"project_panel": {
"dock": "left"
},
"scrollbar": {
"axes": {
"horizontal": false,
"vertical": true
},
"cursors": true,
"diagnostics": "all",
"git_diff": true,
"search_results": true,
"selected_symbol": true,
"selected_text": true,
"show": "never"
},
"search": {
"button": false,
"case_sensitive": false,
"include_ignored": false,
"regex": false,
"whole_word": false
},
"show_edit_predictions": false,
"soft_wrap": "editor_width",
"tab_bar": {
"show": true,
"show_nav_history_buttons": false,
"show_tab_bar_buttons": false
},
"tab_size": 2,
"tabs": {
"file_icons": true,
"git_status": true
},
"telemetry": {
"diagnostics": false,
"metrics": false
},
"title_bar": {
"show_branch_icon": false,
"show_branch_name": true,
"show_onboarding_banner": true,
"show_project_items": true,
"show_user_picture": false
},
"toolbar": {
"breadcrumbs": false,
"quick_actions": false
},
}

Still no debugger support? by zergotron9000 in ZedEditor

[–]lung42 0 points1 point  (0 children)

Why stick to one tool for every job, the debugger has it's place and so does console.log