this post was submitted on 07 Oct 2025
973 points (95.7% liked)

Programmer Humor

26772 readers
1402 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Ephera@lemmy.ml 1 points 11 hours ago (1 children)

Ah, I guess that makes sense. Kate automatically detects available LSP server executables but then prompts you before starting them for the first time, in case you did not install that and it's malware, or I guess, in case you just placed a script there which happened to be called the same, but would be very bad to run.

Neovim could theoretically do that, too, but then you need a way to block executables, so that it stops prompting you every time, which you'd probably want in a separate config file.
So, it's definitely a simpler solution and perhaps moreso what one would expect from a TUI editor, for you to just list the ones to run in the config file.

[โ€“] AeonFelis@lemmy.world 2 points 10 hours ago

Neovim has something better - there is a plugin that installs the servers for you - https://github.com/mason-org/mason.nvim - and then you can just use the servers that plugin has installed (which should be more trustworthy because you just need to trust the plugin and not some random executable)

There is also https://github.com/mason-org/mason-lspconfig.nvim which bridges the two and automatically enables servers that were installed via Mason.