This commit is contained in:
Michael Thomson 2025-01-02 09:17:09 -05:00
parent 1c89a70e0d
commit a818d3d1df
No known key found for this signature in database
GPG Key ID: 8EFECCD347C72F7D
4 changed files with 55 additions and 34 deletions

View File

@ -16,6 +16,7 @@
../../modules/home-manager/nix-index.nix
../../modules/home-manager/bitwarden.nix
../../modules/home-manager/latex.nix
../../modules/home-manager/ghostty.nix
];
home.username = "mthomson";
home.homeDirectory = "/Users/mthomson";

View File

@ -0,0 +1,15 @@
{
pkgs,
config,
...
}: {
programs.ghostty = {
enable = true;
enableZshIntegration = true;
installVimSyntax = true;
settings = {
font-family = "JetBrainsMono Nerd Font Mono";
macos-titlebar-style = "hidden";
};
};
}

View File

@ -17,9 +17,10 @@
# darwinLaunchOptions = [
# "--single-instance"
# ];
# settings = {
settings = {
# background_opacity = "0.9";
# background_blur = 5;
# };
hide_window_decorations = "titlebar-only";
};
};
}

View File

@ -370,36 +370,36 @@ lib,
picker = "minipick";
};
};
# obsidian = {
# enable = true;
# settings = {
# completion = {
# min_chars = 1;
# nvim_cmp = true;
# };
# notes_subir = "notes";
# new_notes_location = "notes_subdir";
# templates = {
# folder = "templates";
# };
# workspaces = [
# {
# name = "personal";
# path = "~/vaults/personal";
# }
# ];
# picker = {
# name = "mini.pick";
# };
# daily_notes = {
# folder = "dailies";
# default_tags = [ "type/daily" ];
# };
# };
# };
# render-markdown = {
# enable = true;
# };
obsidian = {
enable = true;
settings = {
completion = {
min_chars = 1;
nvim_cmp = true;
};
notes_subir = "notes";
new_notes_location = "notes_subdir";
templates = {
folder = "templates";
};
workspaces = [
{
name = "personal";
path = "~/vaults/personal";
}
];
picker = {
name = "mini.pick";
};
daily_notes = {
folder = "dailies";
default_tags = [ "type/daily" ];
};
};
};
render-markdown = {
enable = true;
};
friendly-snippets = {
enable = true;
};
@ -499,6 +499,10 @@ lib,
};
};
};
hls = {
enable = true;
installGhc = true;
};
ts_ls = {
enable = true;
};