add some more plugins

This commit is contained in:
Roel de Cort 2024-04-23 21:58:57 +02:00
parent d5c62d938c
commit 45548c8f5f
11 changed files with 440 additions and 24 deletions

View file

@ -0,0 +1,103 @@
_: {
plugins.lualine = {
enable = true;
globalstatus = true;
disabledFiletypes = {
statusline = ["dashboard" "alpha"];
};
theme = {
normal = {
a = {
bg = "#b4befe";
fg = "#1c1d21";
};
b = {
bg = "nil";
};
c = {
bg = "nil";
};
z = {
bg = "nil";
};
y = {
bg = "nil";
};
};
};
sections = {
lualine_a = [
{
name = "mode";
fmt = "string.lower";
color = {
fg = "none";
bg = "none";
};
}
];
lualine_b = [
{
name = "branch";
icon = "";
color = {
fg = "none";
bg = "none";
};
}
"diff"
];
lualine_c = [
{
name = "diagnostic";
extraConfig = {
symbols = {
error = " ";
warn = " ";
info = " ";
hint = "󰝶 ";
};
};
color = {
fg = "none";
bg = "none";
};
}
];
lualine_x = [
{
name = "filetype";
extraConfig = {
icon_only = true;
};
}
];
lualine_y = [
{
name = "filename";
extraConfig = {
symbols = {
modified = "";
readonly = "";
unnamed = "";
};
};
color = {
fg = "none";
bg = "none";
};
separator.left = "";
}
];
lualine_z = [
{
name = "location";
color = {
fg = "none";
bg = "none";
};
}
];
};
};
}