1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-01 19:49:25 +00:00

[neovim] Show warnings about larger files in a popup

This commit is contained in:
2023-11-05 18:28:24 +01:00
parent b7ba811d1f
commit 66a3e25a2b
2 changed files with 13 additions and 1 deletions

View File

@ -35,5 +35,17 @@ require("noice").setup({
},
opts = { skip = true },
},
{
view = "popup",
filter = {
find = "File larger than",
},
opts = {
size = {
width = 100,
height = 4,
},
},
},
},
})