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 = { defaultComponentConfigs = {
indent = { indent = {
withExpanders = true; withExpanders = true;
expanderCollapsed = ""; expanderCollapsed = "󰅂";
expanderExpanded = " "; expanderExpanded = "󰅀";
expanderHighlight = "NeoTreeExpander"; expanderHighlight = "NeoTreeExpander";
}; };
@ -29,7 +29,7 @@
renamed = "󰑕"; renamed = "󰑕";
staged = "󰩍"; staged = "󰩍";
unstaged = ""; unstaged = "";
untracked = ""; untracked = " ";
}; };
}; };
}; };

View file

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

View file

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