Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
fix(systemd): very stupid mistake
Browse files Browse the repository at this point in the history
I put condition thinking it would only affect loading of config for
`systemd_ls` but it actually affects the whole astrolp >_<
  • Loading branch information
RayJameson committed Oct 12, 2024
1 parent 8ac5ba2 commit 9afe7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/plugins/lsp/config/systemd.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
if not vim.fn.executable("systemd-language-server") then return {} end
---@type LazySpec
return {
"AstroNvim/astrolsp",
cond = vim.fn.executable("systemd-language-server") == 1,
---@param opts AstroLSPOpts
opts = function(_, opts)
opts.servers = opts.servers or {}
Expand Down

0 comments on commit 9afe7c8

Please sign in to comment.