Merge branch 'master' into master

This commit is contained in:
Wojciech Pietraszuk 2025-05-16 17:04:19 +02:00 committed by GitHub
commit 4b0f97e0bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 37 additions and 27 deletions

View file

@ -50,7 +50,7 @@ return {
-- Only run the linter in buffers that you can modify in order to
-- avoid superfluous noise, notably within the handy LSP pop-ups that
-- describe the hovered symbol using Markdown.
if vim.opt_local.modifiable:get() then
if vim.bo.modifiable then
lint.try_lint()
end
end,

View file

@ -13,6 +13,7 @@ return {
command = 'Neotree current',
})
end,
lazy = false,
keys = {
{ '<leader>e', ':Neotree toggle<CR>', { desc = 'NeoTree toggle' } },
},