Fixed angular lsp

This commit is contained in:
Radu Macocian (admac)
2026-03-21 17:48:57 +01:00
parent 40bcb42ee0
commit 39bcb18f3e
5 changed files with 70 additions and 5 deletions
+2 -1
View File
@@ -5,7 +5,7 @@ local M = {}
-- Adapter (netcoredbg)
dap.adapters.coreclr = {
type = "executable",
command = "/Users/radumaco/Projects/netcoredbg/build/src/netcoredbg",
command = "/home/radu/.local/share/nvim/mason/bin/netcoredbg",
args = { "--interpreter=vscode" },
}
@@ -200,6 +200,7 @@ local function debug_dotnet_from_sln()
env = {
ASPNETCORE_ENVIRONMENT = "Development",
DOTNET_ENVIRONMENT = "Development",
ASPNETCORE_URLS = "https://localhost:7045;http://localhost:5000",
},
})
end
+5 -1
View File
@@ -76,7 +76,11 @@ require("lazy").setup({
{
"olimorris/codecompanion.nvim",
version = "^18.0.0",
opts = {},
opts = {
opts = {
log_level = "TRACE",
},
},
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",