refactor!: make oil buffers unlisted by default (#45)
This commit is contained in:
parent
2b0b9382d7
commit
1d548190cf
3 changed files with 9 additions and 3 deletions
|
|
@ -118,7 +118,9 @@ require("oil").setup({
|
||||||
-- "mtime",
|
-- "mtime",
|
||||||
},
|
},
|
||||||
-- Buffer-local options to use for oil buffers
|
-- Buffer-local options to use for oil buffers
|
||||||
buf_options = {},
|
buf_options = {
|
||||||
|
buflisted = false,
|
||||||
|
},
|
||||||
-- Window-local options to use for oil buffers
|
-- Window-local options to use for oil buffers
|
||||||
win_options = {
|
win_options = {
|
||||||
wrap = false,
|
wrap = false,
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,9 @@ OPTIONS *oil-option
|
||||||
-- "mtime",
|
-- "mtime",
|
||||||
},
|
},
|
||||||
-- Buffer-local options to use for oil buffers
|
-- Buffer-local options to use for oil buffers
|
||||||
buf_options = {},
|
buf_options = {
|
||||||
|
buflisted = false,
|
||||||
|
},
|
||||||
-- Window-local options to use for oil buffers
|
-- Window-local options to use for oil buffers
|
||||||
win_options = {
|
win_options = {
|
||||||
wrap = false,
|
wrap = false,
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,9 @@ local default_config = {
|
||||||
-- "mtime",
|
-- "mtime",
|
||||||
},
|
},
|
||||||
-- Buffer-local options to use for oil buffers
|
-- Buffer-local options to use for oil buffers
|
||||||
buf_options = {},
|
buf_options = {
|
||||||
|
buflisted = false,
|
||||||
|
},
|
||||||
-- Window-local options to use for oil buffers
|
-- Window-local options to use for oil buffers
|
||||||
win_options = {
|
win_options = {
|
||||||
wrap = false,
|
wrap = false,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue