This commit is contained in:
Tao Tien 2025-01-30 17:42:24 -08:00
parent c8b414ad47
commit 03cb61d4a5
5 changed files with 56 additions and 7 deletions

View file

@ -11,11 +11,11 @@
what = "//100.97.47.81/anime"; what = "//100.97.47.81/anime";
where = "/mnt/uwuraid/anime"; where = "/mnt/uwuraid/anime";
}) })
# (opts (opts
# // { // {
# what = "//100.97.47.81/appdata"; what = "//100.97.47.81/appdata";
# where = "/mnt/uwuraid/appdata"; where = "/mnt/uwuraid/appdata";
# }) })
(opts (opts
// { // {
what = "//100.97.47.81/backup"; what = "//100.97.47.81/backup";
@ -79,7 +79,7 @@
}; };
in [ in [
(opts // {where = "/mnt/uwuraid/anime";}) (opts // {where = "/mnt/uwuraid/anime";})
# (opts // {where = "/mnt/uwuraid/appdata";}) (opts // {where = "/mnt/uwuraid/appdata";})
(opts // {where = "/mnt/uwuraid/backup";}) (opts // {where = "/mnt/uwuraid/backup";})
(opts // {where = "/mnt/uwuraid/everything";}) (opts // {where = "/mnt/uwuraid/everything";})
(opts // {where = "/mnt/uwuraid/games";}) (opts // {where = "/mnt/uwuraid/games";})

View file

@ -62,7 +62,7 @@
taskwarrior3 taskwarrior3
thunderbird thunderbird
typst typst
typst-fmt # typst-fmt
tinymist tinymist
vial vial
wezterm wezterm

View file

@ -29,6 +29,36 @@ in {
home.file.".config/direnv/lib/uv.sh".source = ./uv.sh; home.file.".config/direnv/lib/uv.sh".source = ./uv.sh;
programs = { programs = {
bacon = {
enable = true;
settings.jobs.default = {
command = [
"cargo"
"clippy"
"--"
"-A"
"clippy::bool_to_int_with_if"
"-A"
"clippy::collapsible_else_if"
"-A"
"clippy::collapsible_if"
"-A"
"clippy::derive_partial_eq_without_eq"
"-A"
"clippy::get_first"
"-A"
"clippy::if_same_then_else"
"-A"
"clippy::len_without_is_empty"
"-A"
"clippy::map_entry"
"-A"
"clippy::while_let_on_iterator"
];
need_stdout = false;
};
};
bat = { bat = {
enable = true; enable = true;
config = { config = {

View file

@ -69,6 +69,7 @@
"bash" "bash"
"gas" "gas"
"sql" "sql"
"scheme"
]; ];
language = [ language = [
{ {
@ -179,6 +180,14 @@
name = "toml"; name = "toml";
auto-format = true; auto-format = true;
} }
{
name = "typst";
language-servers = ["tinymist"];
}
{
name = "scheme";
language-servers = ["steel"];
}
]; ];
language-servers = { language-servers = {
rust-analyzer.config = { rust-analyzer.config = {
@ -214,6 +223,12 @@
sqls = { sqls = {
command = "sqls"; command = "sqls";
}; };
tinymist = {
command = "tinymist";
};
steel-language-server = {
command = "steel-language-server";
};
}; };
grammar = [ grammar = [
{ {

View file

@ -178,3 +178,7 @@ def fixme [] {
} }
source ~/.cache/starship/init.nu source ~/.cache/starship/init.nu
source ~/.zoxide.nu source ~/.zoxide.nu
def --env z [path: string = "~"] {
zo $path
l
}