blob: 592421b16c0eb426297dce477bbfe75d0a9fcf91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require("oil").setup({
default_file_explorer = true,
columns = {
-- "icon"
},
constrain_cursor = "editable",
skip_confirm_for_simple_edits = true,
win_options = {
number = false,
relativenumber = false,
cursorline = true,
},
view_options = {
show_hidden = true,
},
float = {
max_width = .7,
max_height = .5,
win_options = {
},
},
})
|