chore(tooling): add nix flake and reconfigure some stuff for neovim

This commit is contained in:
cswimr 2025-02-08 13:42:35 -06:00
parent c6f6f0d5c1
commit b2bc02108d
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
5 changed files with 97 additions and 13 deletions

22
.vscode/launch.json vendored
View file

@ -1,15 +1,11 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "C#: Looking Glass",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/LookingGlass.csproj"
}
]
"version": "0.2.0",
"configurations": [
{
"name": "C#: Looking Glass",
"type": "coreclr",
"request": "launch",
"program": "./bin/Debug/net9.0/LookingGlass.dll"
}
]
}