docs(v3.5.0): update README for integrated mg_dotfiles and security improvements

- Integrated mg_dotfiles as regular directory (not submodule)
- Added .zshrc.local.example template for local configs without secrets
- Added mg_dotfiles/zsh/.zshrc.local to .gitignore to protect API keys
- Updated README to reflect mg_dotfiles integration and new structure
- Added nvim configuration directory with LazyVim setup
This commit is contained in:
Marco Gallegos
2026-01-11 12:28:56 -06:00
parent 43df5316ed
commit 5ab59146a8
236 changed files with 1919986 additions and 21 deletions

View File

@@ -0,0 +1,212 @@
-- This file contains the configuration for the nvim-dap plugin in Neovim.
return {
{
-- Plugin: nvim-dap
-- URL: https://github.com/mfussenegger/nvim-dap
-- Description: Debug Adapter Protocol client implementation for Neovim.
"mfussenegger/nvim-dap",
recommended = true, -- Recommended plugin
desc = "Debugging support. Requires language specific adapters to be configured. (see lang extras)",
dependencies = {
-- Plugin: nvim-dap-ui
-- URL: https://github.com/rcarriga/nvim-dap-ui
-- Description: A UI for nvim-dap.
"rcarriga/nvim-dap-ui",
-- Plugin: nvim-dap-virtual-text
-- URL: https://github.com/theHamsta/nvim-dap-virtual-text
-- Description: Virtual text for the debugger.
{
"theHamsta/nvim-dap-virtual-text",
opts = {}, -- Default options
},
},
-- Keybindings for nvim-dap
keys = {
{ "<leader>d", "", desc = "+debug", mode = { "n", "v" } }, -- Group for debug commands
{
"<leader>dB",
function()
require("dap").set_breakpoint(vim.fn.input("Breakpoint condition: "))
end,
desc = "Breakpoint Condition",
},
{
"<leader>db",
function()
require("dap").toggle_breakpoint()
end,
desc = "Toggle Breakpoint",
},
{
"<leader>dc",
function()
require("dap").continue()
end,
desc = "Continue",
},
{
"<leader>da",
function()
require("dap").continue({ before = get_args })
end,
desc = "Run with Args",
},
{
"<leader>dC",
function()
require("dap").run_to_cursor()
end,
desc = "Run to Cursor",
},
{
"<leader>dg",
function()
require("dap").goto_()
end,
desc = "Go to Line (No Execute)",
},
{
"<leader>di",
function()
require("dap").step_into()
end,
desc = "Step Into",
},
{
"<leader>dj",
function()
require("dap").down()
end,
desc = "Down",
},
{
"<leader>dk",
function()
require("dap").up()
end,
desc = "Up",
},
{
"<leader>dl",
function()
require("dap").run_last()
end,
desc = "Run Last",
},
{
"<leader>do",
function()
require("dap").step_out()
end,
desc = "Step Out",
},
{
"<leader>dO",
function()
require("dap").step_over()
end,
desc = "Step Over",
},
{
"<leader>dp",
function()
require("dap").pause()
end,
desc = "Pause",
},
{
"<leader>dr",
function()
require("dap").repl.toggle()
end,
desc = "Toggle REPL",
},
{
"<leader>ds",
function()
require("dap").session()
end,
desc = "Session",
},
{
"<leader>dt",
function()
require("dap").terminate()
end,
desc = "Terminate",
},
{
"<leader>dw",
function()
require("dap.ui.widgets").hover()
end,
desc = "Widgets",
},
},
config = function()
local dap = require("dap")
-- Load mason-nvim-dap if available
if LazyVim.has("mason-nvim-dap.nvim") then
require("mason-nvim-dap").setup(LazyVim.opts("mason-nvim-dap.nvim"))
end
-- Set highlight for DapStoppedLine
vim.api.nvim_set_hl(0, "DapStoppedLine", { default = true, link = "Visual" })
-- Define signs for DAP
for name, sign in pairs(LazyVim.config.icons.dap) do
sign = type(sign) == "table" and sign or { sign }
vim.fn.sign_define(
"Dap" .. name,
{ text = sign[1], texthl = sign[2] or "DiagnosticInfo", linehl = sign[3], numhl = sign[3] }
)
end
-- Setup DAP configuration using VsCode launch.json file
local vscode = require("dap.ext.vscode")
local json = require("plenary.json")
vscode.json_decode = function(str)
return vim.json.decode(json.json_strip_comments(str))
end
-- Load launch configurations from .vscode/launch.json if it exists
if vim.fn.filereadable(".vscode/launch.json") then
vscode.load_launchjs()
end
-- Function to load environment variables
local function load_env_variables()
local variables = {}
for k, v in pairs(vim.fn.environ()) do
variables[k] = v
end
-- Load variables from .env file manually
local env_file_path = vim.fn.getcwd() .. "/.env"
local env_file = io.open(env_file_path, "r")
if env_file then
for line in env_file:lines() do
for key, value in string.gmatch(line, "([%w_]+)=([%w_]+)") do
variables[key] = value
end
end
env_file:close()
else
print("Error: .env file not found in " .. env_file_path)
end
return variables
end
-- Add the env property to each existing Go configuration
for _, config in pairs(dap.configurations.go or {}) do
config.env = load_env_variables
end
end,
},
}