AutoYADM commit: 2025-01-24 00:45:03

This commit is contained in:
Daniel Fichtinger 2025-01-24 00:45:03 -05:00
parent 3ee15b0f82
commit 235094042b
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
return {
"artemave/workspace-diagnostics.nvim",
keys = {
{
"<leader>xa",
function()
for _, client in ipairs(vim.lsp.get_clients({ bufnr = 0 })) do
require("workspace-diagnostics").populate_workspace_diagnostics(client, 0)
end
end,
{ desc = "Populate Workspace Diagnostics" },
},
},
}

1
.zshrc
View file

@ -77,6 +77,7 @@ alias yadmadd="~/dev/autoyadm/yadmadd.sh"
# Created by `pipx` on 2024-09-20 02:14:00 # Created by `pipx` on 2024-09-20 02:14:00
export PATH="$PATH:/home/fic/.local/bin:/home/fic/.cargo/bin:/home/fic/go/bin" export PATH="$PATH:/home/fic/.local/bin:/home/fic/.cargo/bin:/home/fic/go/bin"
export PATH="$PATH:/home/fic/.local/share/bob/nvim-bin" export PATH="$PATH:/home/fic/.local/share/bob/nvim-bin"
export PATH="$PATH:/home/fic/.luarocks/bin"
fpath=(~/.zsh.d/ $fpath) fpath=(~/.zsh.d/ $fpath)
function nh() { function nh() {
nohup "$@" > /dev/null 2>&1 & nohup "$@" > /dev/null 2>&1 &