Working on termonal stuff
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
{ config, pkgs, lib, user, ... }:
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
user,
|
||||
...
|
||||
}:
|
||||
{
|
||||
# NixOS: Install Starship system-wide (optional)
|
||||
environment.systemPackages = with pkgs; [ starship ];
|
||||
@@ -6,23 +12,25 @@
|
||||
# Home Manager: Configure Starship for the user
|
||||
home-manager.users.${user.username} = {
|
||||
programs.starship = {
|
||||
enable = true; # Enables Starship and adds init to shell configs
|
||||
settings = {
|
||||
# Example: Catppuccin Mocha theme
|
||||
add_newline = false;
|
||||
format = "$all";
|
||||
enable = true; # Enables Starship and adds init to shell configs
|
||||
customConfig = ''
|
||||
add_newline = false
|
||||
format = "$all"
|
||||
|
||||
[character]
|
||||
success_symbol = "[❯](bold green)"
|
||||
error_symbol = "[❯](bold red)"
|
||||
vicmd_symbol = "[❮](bold blue)"
|
||||
|
||||
[directory]
|
||||
truncation_length = 3
|
||||
style = "bold blue"
|
||||
|
||||
[git_branch]
|
||||
symbol = " "
|
||||
style = "bold purple"
|
||||
format = "[$symbol$branch]($style) "
|
||||
};
|
||||
'';
|
||||
};
|
||||
|
||||
# Optional: Manually ensure Starship init is in shell configs
|
||||
|
||||
Reference in New Issue
Block a user