mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/barbecue: migrate to mkNeovimPlugin
This commit is contained in:
parent
279258294b
commit
c8bb7880bf
2 changed files with 121 additions and 119 deletions
|
@ -7,58 +7,60 @@
|
|||
plugins.barbecue = {
|
||||
enable = true;
|
||||
|
||||
attachNavic = true;
|
||||
createAutocmd = true;
|
||||
includeBuftypes = [ "" ];
|
||||
excludeFiletypes = [
|
||||
"netrw"
|
||||
"toggleterm"
|
||||
];
|
||||
modifiers = {
|
||||
dirname = ":~:.";
|
||||
basename = "";
|
||||
};
|
||||
showDirname = true;
|
||||
showBasename = true;
|
||||
showModified = true;
|
||||
modified = "function(bufnr) return vim.bo[bufnr].modified end";
|
||||
showNavic = true;
|
||||
leadCustomSection = ''function() return " " end'';
|
||||
customSection = ''function() return " " end'';
|
||||
theme = "auto";
|
||||
contextFollowIconColor = true;
|
||||
symbols = {
|
||||
modified = "M";
|
||||
ellipsis = "///";
|
||||
separator = "{";
|
||||
};
|
||||
kinds = {
|
||||
File = "";
|
||||
Module = "";
|
||||
Namespace = "";
|
||||
Package = "";
|
||||
Class = "";
|
||||
Method = "";
|
||||
Property = "";
|
||||
Field = "";
|
||||
Constructor = "";
|
||||
Enum = "";
|
||||
Interface = "";
|
||||
Function = "";
|
||||
Variable = "";
|
||||
Constant = "";
|
||||
String = "";
|
||||
Number = "";
|
||||
Boolean = "";
|
||||
Array = "";
|
||||
Object = "";
|
||||
Key = "";
|
||||
Null = "";
|
||||
EnumMember = "";
|
||||
Struct = "";
|
||||
Event = "";
|
||||
Operator = "";
|
||||
TypeParameter = "";
|
||||
settings = {
|
||||
attach_navic = true;
|
||||
create_autocmd = true;
|
||||
include_buftypes = [ "" ];
|
||||
exclude_filetypes = [
|
||||
"netrw"
|
||||
"toggleterm"
|
||||
];
|
||||
modifiers = {
|
||||
dirname = ":~:.";
|
||||
basename = "";
|
||||
};
|
||||
show_dirname = true;
|
||||
show_basename = true;
|
||||
show_modified = true;
|
||||
modified = "function(bufnr) return vim.bo[bufnr].modified end";
|
||||
show_navic = true;
|
||||
lead_custom_section = ''function() return " " end'';
|
||||
custom_section = ''function() return " " end'';
|
||||
theme = "auto";
|
||||
context_follow_icon_color = true;
|
||||
symbols = {
|
||||
modified = "M";
|
||||
ellipsis = "///";
|
||||
separator = "{";
|
||||
};
|
||||
kinds = {
|
||||
File = "";
|
||||
Module = "";
|
||||
Namespace = "";
|
||||
Package = "";
|
||||
Class = "";
|
||||
Method = "";
|
||||
Property = "";
|
||||
Field = "";
|
||||
Constructor = "";
|
||||
Enum = "";
|
||||
Interface = "";
|
||||
Function = "";
|
||||
Variable = "";
|
||||
Constant = "";
|
||||
String = "";
|
||||
Number = "";
|
||||
Boolean = "";
|
||||
Array = "";
|
||||
Object = "";
|
||||
Key = "";
|
||||
Null = "";
|
||||
EnumMember = "";
|
||||
Struct = "";
|
||||
Event = "";
|
||||
Operator = "";
|
||||
TypeParameter = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue