add sources to null-ls

This commit is contained in:
xesc 2025-02-23 22:30:52 +01:00
parent bdf75e4c1d
commit 6458c24d8a
21 changed files with 638 additions and 627 deletions

View file

@ -1,20 +1,20 @@
return {
{
"folke/zen-mode.nvim",
opts = {
window = {
backdrop = 1,
width = 120,
},
plugins = {
options = {
enabled = true,
showcmd = true,
laststatus = 3,
{
"folke/zen-mode.nvim",
opts = {
window = {
backdrop = 1,
width = 120,
},
plugins = {
options = {
enabled = true,
showcmd = true,
laststatus = 3,
},
gitsigns = { enabled = false }
},
vim.keymap.set("n", "<leader>zz", function() require("zen-mode").toggle() end),
},
gitsigns = { enabled = false }
},
vim.keymap.set("n", "<leader>zz", function() require("zen-mode").toggle() end),
},
}
}
}