This commit is contained in:
albert 2025-02-21 13:45:42 -08:00
parent 2fa9d5013b
commit 2edebdbb8f
Signed by: albert
GPG key ID: 3895DD267CA11BA9
2 changed files with 26 additions and 11 deletions
home-manager/common/software/cli/nixvim
nixos/common/services

View file

@ -51,20 +51,35 @@
enable = true;
settings = {
autoLoad = true;
options = {
left.size = 30;
right.size = 30;
};
left = [
{
{
title = "NeoTree";
ft = "neo-tree";
title = "neo-tree";
size = 0.7;
filter = ''
function(buf)
return vim.b[buf].neo_tree_source == "filesystem"
end
'';
}
{
title = "Git";
ft = "neo-tree";
size = 0.3;
filter = ''
function(buf)
return vim.b[buf].neo_tree_source == "buffers"
end
'';
}
];
wo = {
signcolumn = "no";
spell = false;
winbar = false;
winfixheight = false;
winfixwidth = false;
winhighlight = "";
};
right = [
{ ft = "neo-tree"; }
];
};
};
web-devicons.enable = true;

View file

@ -30,7 +30,7 @@ in {
};
networking.firewall.interfaces.tailscale0 = {
allowedTCPPorts = [ 8384 22000 22067 22070 ];
allowedTCPPorts = [ 8384 22000 22067 22070 ];
allowedUDPPorts = [ 22000 21027 ];
};