-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Summary
Links to md files in subdirectories from the root are not found by the LSP
I have a strange feeling that I'm missing something obvious in my setup
My setup code using Mason:
--setting up replace using Blink rather than cmp, seems to work fine
local capabilities = require('blink.cmp').get_lsp_capabilities()
local servers = {
lua_ls = {
settings = {
Lua = {
completion = {
callSnippet = 'Replace',
},
},
},
},
markdown_oxide = {
capabilities = vim.tbl_deep_extend('force', capabilities, {
workspace = {
didChangeWatchedFiles = {
dynamicRegistration = true,
},
},
}),
},
}
local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, {
'biome',
'lua_ls',
'stylua',
})
require('mason-tool-installer').setup { ensure_installed = ensure_installed }Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers