patch: fixes (#34)

- Fixed Luanne, as it was not configured correctly after the last
refactor (should've tested it correctly)
- Fixed small issue with separator in neo-tree
- Remove EOB character
This commit is contained in:
Roel de Cort 2024-09-11 22:43:40 +02:00 committed by GitHub
parent f44000e518
commit b7d1a54e43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 83 additions and 86 deletions

View file

@ -14,8 +14,8 @@
defaultComponentConfigs = {
indent = {
withExpanders = true;
expanderCollapsed = "";
expanderExpanded = " ";
expanderCollapsed = "󰅂";
expanderExpanded = "󰅀";
expanderHighlight = "NeoTreeExpander";
};
@ -29,7 +29,7 @@
renamed = "󰑕";
staged = "󰩍";
unstaged = "";
untracked = "";
untracked = " ";
};
};
};

View file

@ -12,33 +12,31 @@ _: {
statusline = ["startup" "alpha"];
};
theme = "catppuccin";
};
sections = {
lualine_a = [
{
name = "mode";
icon = " ";
__unkeyed-1 = "mode";
icon = "";
}
];
lualine_b = [
{
name = "branch";
__unkeyed-1 = "branch";
icon = "";
}
{
name = "diff";
extraConfig = {
__unkeyed-1 = "diff";
symbols = {
added = " ";
modified = " ";
removed = " ";
};
};
}
];
lualine_c = [
{
name = "diagnostics";
extraConfig = {
__unkeyed-1 = "diagnostics";
sources = ["nvim_lsp"];
symbols = {
error = " ";
@ -46,32 +44,27 @@ _: {
info = " ";
hint = "󰝶 ";
};
};
}
{
name = "navic";
__unkeyed-1 = "navic";
}
];
lualine_x = [
{
name = "filetype";
extraConfig = {
__unkeyed-1 = "filetype";
icon_only = true;
separator = "";
padding = {
left = 1;
right = 0;
};
};
}
{
name = "filename";
extraConfig = {
__unkeyed-1 = "filename";
path = 1;
};
}
{
name.__raw = ''
__unkeyed-1.__raw = ''
function()
local icon = " "
local status = require("copilot.api").status.data
@ -87,16 +80,15 @@ _: {
];
lualine_y = [
{
name = "progress";
__unkeyed-1 = "progress";
}
];
lualine_z = [
{
name = "location";
__unkeyed-1 = "location";
}
];
};
};
};
};
}

View file

@ -86,6 +86,11 @@
# Hide command line unless needed
cmdheight = 0;
# Remove EOB
fillchars = {
eob = " ";
};
};
};
}