diff --git a/.config/nvim/lua/plugins/workspace-diagnostics.lua b/.config/nvim/lua/plugins/workspace-diagnostics.lua new file mode 100644 index 00000000..5e09ea20 --- /dev/null +++ b/.config/nvim/lua/plugins/workspace-diagnostics.lua @@ -0,0 +1,14 @@ +return { + "artemave/workspace-diagnostics.nvim", + keys = { + { + "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" }, + }, + }, +} diff --git a/.zshrc b/.zshrc index 8727544c..2f61c8a6 100644 --- a/.zshrc +++ b/.zshrc @@ -77,6 +77,7 @@ alias yadmadd="~/dev/autoyadm/yadmadd.sh" # 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/share/bob/nvim-bin" +export PATH="$PATH:/home/fic/.luarocks/bin" fpath=(~/.zsh.d/ $fpath) function nh() { nohup "$@" > /dev/null 2>&1 &