You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 21, 2026. It is now read-only.
In an attempt to get namespace & filename refactor working with LSP, configure AstroNvim/astrolsp plugin with specific file_operations (in theory this should not be needed)
In an attempt to get namespace & filename refactor working with LSP, configure AstroNvim/astrolsp plugin with specific file_operations (in theory this should not be needed)
Following the AstroNvim Advanced LSP configuration page and AstroNvim/astrolsp config and AstroNvim/astrolsp readme - lsp-file-operations
Config tried so far (unsucessfully)
{ "AstroNvim/astrolsp", ---@type AstroLSPOpts opts = { -- servers = { "clojure_lsp" }, -- use locally installed Clojure LSP server file_operations = { timeout = 10000, -- default timeout in ms for completing LSP operations operations = { -- enable all of the file operations willCreate = true, didCreate = true, willRename = true, prepareRename = true, didRename = true, willDelete = true, didDelete = true, }, }, }, },