fix(nvim): regex

This commit is contained in:
u2515h
2024-01-25 18:32:50 +01:00
parent ffa62aedfd
commit d7e30ca465
4 changed files with 5 additions and 7 deletions

View File

@@ -114,7 +114,7 @@ vim.g.rustaceanvim = {
-- standalone file support
-- setting it to false may improve startup time
standalone = true,
cmd = {(deps.rust_analyzer_path .. "/bin/rust-analyzer")},
cmd = {(deps["rust_analyzer_path"] .. "/bin/rust-analyzer")},
capabilities = require("cmp_nvim_lsp").default_capabilities(c),
on_attach = function(client, bufnr)
require("lsp-inlayhints").on_attach(client, bufnr)
@@ -159,7 +159,7 @@ vim.g.rustaceanvim = {
dap = {
adapter = {
type = "executable",
command = deps.lldb_path .. "/bin/lldb-vscode",
command = deps["lldb_path"] .. "/bin/lldb-vscode",
name = "rt_lldb"
}
}