some fish and nvim improvements
Some checks failed
/ lint (push) Failing after 32s

This commit is contained in:
Jana Dönszelmann 2026-03-16 10:47:10 +01:00
parent d9d4e43c35
commit 391b47fa75
No known key found for this signature in database
2 changed files with 40 additions and 2 deletions

View file

@ -229,7 +229,7 @@ inputs@{ machine, ... }:
function fish_greeting function fish_greeting
${pkgs.blahaj}/bin/blahaj -s ${pkgs.blahaj}/bin/blahaj -s
echo "welcome to $(uname -n), $(whoami)!" echo "mrow! This is $(uname -n) and ur $(whoami) :3"
end end
''; '';
}; };

View file

@ -400,7 +400,45 @@ in
lualine = { lualine = {
enable = true; enable = true;
settings.options.theme = "onedark"; settings = {
options = {
theme = "onedark";
globalstatus = true;
};
sections = {
lualine_a = [
{
__unkeyed-1 = "mode";
}
];
lualine_b = [
{
__unkeyed-1 = "branch";
}
{ __unkeyed-1 = "diff"; }
{ __unkeyed-1 = "diagnostics"; }
];
lualine_c = [
{
__unkeyed-1 = "filename";
# show path
path = 1;
shorting_target = 60;
}
];
lualine_x = [
{ __unkeyed-1 = "lsp_status"; }
{ __unkeyed-1 = "diff"; }
{ __unkeyed-1 = "encoding"; }
{ __unkeyed-1 = "fileformat"; }
{
__unkeyed-1 = "filetype";
}
];
lualine_y = [ { __unkeyed-1 = "progress"; } ];
lualine_z = [ { __unkeyed-1 = "location"; } ];
};
};
}; };
rustaceanvim = { rustaceanvim = {