Init Config

This commit is contained in:
DerGrumpf
2026-04-03 23:37:52 +02:00
parent 9d4aaa6edd
commit 824c7cc4fc
111 changed files with 5736 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
{ pkgs, ... }:
{
# Lualine: Fast and customizable statusline for Neovim
# Displays file info, git status, diagnostics, and mode at the bottom of the editor.
programs.nixvim.plugins.lualine = {
enable = true;
settings = {
options = {
theme = "catppuccin";
component_separators = {
left = "|";
right = "|";
};
section_separators = {
left = "";
right = "";
};
};
};
};
}