fix(nvim): regex
This commit is contained in:
4
rust.lua
4
rust.lua
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user