basic oil

This commit is contained in:
2026-06-25 14:45:20 +02:00
parent 339f422766
commit 87a8648b07
5 changed files with 39 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
vim.pack.add({
{
src = "https://github.com/stevearc/oil.nvim",
name = "oil.nvim",
},
})
require("oil").setup({
view_options = {
show_hidden = true,
is_hidden_file = function(name, _)
return vim.startswith(name, ".")
end,
is_always_hidden = function(name, _)
return name == ".git"
end,
},
})