aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-06-14 21:22:50 +0200
committerpml68 <tutorialmester@gmail.com>2024-06-14 21:22:50 +0200
commit85e7d49e405781c1644e84010e8b7ef6c7a4851f (patch)
tree7124524d51e71e5ba91b021c29aff456d28d87c7 /lua
parentfeat: add NStefan002/visual-surround.nvim (diff)
downloadnvim-85e7d49e405781c1644e84010e8b7ef6c7a4851f.tar.gz
feat(Oil): add some config options
Diffstat (limited to '')
-rw-r--r--lua/pml68/plugins.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua
index 35fb21f..8ebbca3 100644
--- a/lua/pml68/plugins.lua
+++ b/lua/pml68/plugins.lua
@@ -53,6 +53,10 @@ local plugins = {
},
view_options = {
show_hidden = true,
+ natural_order = true,
+ is_always_hidden = function (name, _)
+ return name == '.git'
+ end
},
float = {
padding = 2,
@@ -63,6 +67,8 @@ local plugins = {
winblend = 0,
},
},
+ skip_confirm_for_simple_edits = true,
+ default_file_explorer = true,
})
end
},