conf: zsh
This commit is contained in:
parent
7f82330be5
commit
ba36254d3d
3 changed files with 11 additions and 4 deletions
|
@ -16,6 +16,7 @@
|
|||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
gpg.format = "ssh";
|
||||
core.symlinks = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
font = "FiraCode Nerd Font";
|
||||
theme = "Catppuccin-Mocha";
|
||||
font = {
|
||||
name = "FiraCode Nerd Font";
|
||||
package = pkgs.fira-code-nerdfont;
|
||||
size = 14;
|
||||
};
|
||||
settings = {
|
||||
window_padding_width = 4;
|
||||
};
|
||||
|
|
|
@ -52,7 +52,6 @@
|
|||
programs.oh-my-posh = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
# useTheme = "catppuccin_mocha";
|
||||
settings = {
|
||||
"$schema" = "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json";
|
||||
palette = {
|
||||
|
@ -63,13 +62,15 @@
|
|||
white = "#FFFFFF";
|
||||
text = "#494D64";
|
||||
};
|
||||
console_title_template = "{{.Folder}}{{if .Root}} :: root{{end}} :: {{.Shell}}";
|
||||
blocks = [
|
||||
{
|
||||
alignment = "left";
|
||||
newline = true;
|
||||
segments = [
|
||||
{
|
||||
background = "p:blue";
|
||||
foreground = "p:wight";
|
||||
foreground = "p:white";
|
||||
powerline_symbol = builtins.fromJSON '' "\ue0b4" '';
|
||||
leading_diamond = builtins.fromJSON '' "\ue0b6" '';
|
||||
style = "diamond";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue