mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 01:04:34 +02:00
plugins/bufferlines: normalize plugin defaults
This commit is contained in:
parent
9000e69f4b
commit
d57cbd867a
3 changed files with 24 additions and 12 deletions
|
@ -24,13 +24,19 @@ in
|
|||
Whether to create winbar updater autocmd.
|
||||
'';
|
||||
|
||||
includeBuftypes = mkListStr ''[""]'' ''
|
||||
includeBuftypes = mkListStr [ "" ] ''
|
||||
Buftypes to enable winbar in.
|
||||
'';
|
||||
|
||||
excludeFiletypes = mkListStr ''["netrw" "toggleterm"]'' ''
|
||||
Filetypes not to enable winbar in.
|
||||
'';
|
||||
excludeFiletypes =
|
||||
mkListStr
|
||||
[
|
||||
"netrw"
|
||||
"toggleterm"
|
||||
]
|
||||
''
|
||||
Filetypes not to enable winbar in.
|
||||
'';
|
||||
|
||||
modifiers = {
|
||||
dirname = helpers.defaultNullOpts.mkStr ":~:." ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue