update
This commit is contained in:
parent
1c89a70e0d
commit
a818d3d1df
@ -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";
|
||||
|
15
modules/home-manager/ghostty.nix
Normal file
15
modules/home-manager/ghostty.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
@ -17,9 +17,10 @@
|
||||
# darwinLaunchOptions = [
|
||||
# "--single-instance"
|
||||
# ];
|
||||
# settings = {
|
||||
settings = {
|
||||
# background_opacity = "0.9";
|
||||
# background_blur = 5;
|
||||
# };
|
||||
hide_window_decorations = "titlebar-only";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user