AutoYADM commit: 2025-01-24 00:45:03
This commit is contained in:
parent
3ee15b0f82
commit
235094042b
2 changed files with 15 additions and 0 deletions
14
.config/nvim/lua/plugins/workspace-diagnostics.lua
Normal file
14
.config/nvim/lua/plugins/workspace-diagnostics.lua
Normal 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
1
.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 &
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue