Compare commits
10 commits
98dde2b397
...
c33c3737f1
Author | SHA1 | Date | |
---|---|---|---|
|
c33c3737f1 | ||
|
b07ca98d54 | ||
|
036240d01e | ||
|
4b31ba34b6 | ||
|
f1e11cfff6 | ||
|
2eeded7923 | ||
|
870f684316 | ||
|
23c4620908 | ||
|
db2d6b9401 | ||
|
88e13d8b64 |
|
@ -37,17 +37,21 @@
|
||||||
libreoffice
|
libreoffice
|
||||||
|
|
||||||
# Creative work
|
# Creative work
|
||||||
|
aseprite
|
||||||
blender
|
blender
|
||||||
krita
|
krita
|
||||||
lmms
|
lmms
|
||||||
#orca-slicer # FIXME: Broken right now, gotta wait for PR 369729
|
orca-slicer
|
||||||
shotcut
|
shotcut
|
||||||
vcv-rack
|
vcv-rack
|
||||||
|
vhs
|
||||||
|
|
||||||
## Entertainment
|
## Entertainment
|
||||||
jellyfin-media-player
|
jellyfin-media-player
|
||||||
|
|
||||||
# Gaming
|
# Gaming
|
||||||
|
gamescope
|
||||||
|
heroic
|
||||||
protontricks
|
protontricks
|
||||||
wineWowPackages.unstableFull
|
wineWowPackages.unstableFull
|
||||||
winetricks
|
winetricks
|
||||||
|
@ -65,6 +69,7 @@
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
beekeeper-studio
|
beekeeper-studio
|
||||||
|
godot_4
|
||||||
hoppscotch
|
hoppscotch
|
||||||
lazygit
|
lazygit
|
||||||
|
|
||||||
|
|
|
@ -25,8 +25,7 @@ in
|
||||||
|
|
||||||
window = {
|
window = {
|
||||||
decorations = "None";
|
decorations = "None";
|
||||||
opacity = 0.88;
|
opacity = 0.8;
|
||||||
blur = true;
|
|
||||||
|
|
||||||
padding = {
|
padding = {
|
||||||
x = 18;
|
x = 18;
|
||||||
|
|
|
@ -385,6 +385,11 @@ in
|
||||||
windowrulev2 = tag +gw2, class:^(steam_app_1284210)$
|
windowrulev2 = tag +gw2, class:^(steam_app_1284210)$
|
||||||
windowrulev2 = noblur, tag:gw2
|
windowrulev2 = noblur, tag:gw2
|
||||||
windowrulev2 = noborder, tag:gw2
|
windowrulev2 = noborder, tag:gw2
|
||||||
|
|
||||||
|
# Rules for godot
|
||||||
|
windowrulev2 = size 50%, 50%, class:^(Godot)$, title:^Create New Node$
|
||||||
|
windowrulev2 = size 50%, 50%, class:^(Godot)$, title:^Open a File$
|
||||||
|
windowrulev2 = size 50%, 50%, class:^(Godot)$, title:^Project Settings
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -115,6 +115,7 @@ in
|
||||||
vscode-extensions.vadimcn.vscode-lldb
|
vscode-extensions.vadimcn.vscode-lldb
|
||||||
|
|
||||||
# Vue
|
# Vue
|
||||||
|
prettierd
|
||||||
vue-language-server
|
vue-language-server
|
||||||
|
|
||||||
# Svelte
|
# Svelte
|
||||||
|
|
|
@ -25,6 +25,7 @@ return {
|
||||||
"c",
|
"c",
|
||||||
"cpp",
|
"cpp",
|
||||||
"cs",
|
"cs",
|
||||||
|
"gdscript",
|
||||||
"h",
|
"h",
|
||||||
"javascript",
|
"javascript",
|
||||||
"jsx",
|
"jsx",
|
||||||
|
@ -58,6 +59,7 @@ return {
|
||||||
"cssls",
|
"cssls",
|
||||||
"denols",
|
"denols",
|
||||||
"eslint",
|
"eslint",
|
||||||
|
"gdscript",
|
||||||
"html",
|
"html",
|
||||||
"jsonls",
|
"jsonls",
|
||||||
"lua_ls",
|
"lua_ls",
|
||||||
|
|
|
@ -11,33 +11,33 @@ return {
|
||||||
local null_ls = require("null-ls")
|
local null_ls = require("null-ls")
|
||||||
local helpers = require("null-ls.helpers")
|
local helpers = require("null-ls.helpers")
|
||||||
|
|
||||||
local deno_fmt = helpers.make_builtin({
|
-- local deno_fmt = helpers.make_builtin({
|
||||||
name = "deno_fmt",
|
-- name = "deno_fmt",
|
||||||
filetypes = {
|
-- filetypes = {
|
||||||
"angular",
|
-- "angular",
|
||||||
"astro",
|
-- "astro",
|
||||||
"css",
|
-- "css",
|
||||||
"html",
|
-- "html",
|
||||||
"javascript",
|
-- "javascript",
|
||||||
"json",
|
-- "json",
|
||||||
"jsonc",
|
-- "jsonc",
|
||||||
"less",
|
-- "less",
|
||||||
"markdown",
|
-- "markdown",
|
||||||
"sass",
|
-- "sass",
|
||||||
"scss",
|
-- "scss",
|
||||||
"svelte",
|
-- "svelte",
|
||||||
"typescript",
|
-- "typescript",
|
||||||
"vue",
|
-- "vue",
|
||||||
"yaml",
|
-- "yaml",
|
||||||
},
|
-- },
|
||||||
method = { null_ls.methods.FORMATTING },
|
-- method = { null_ls.methods.FORMATTING },
|
||||||
generator_opts = {
|
-- generator_opts = {
|
||||||
command = "deno",
|
-- command = "deno",
|
||||||
args = { "fmt", "--unstable-component", "-" },
|
-- args = { "fmt", "--unstable-component", "-" },
|
||||||
to_stdin = true,
|
-- to_stdin = true,
|
||||||
},
|
-- },
|
||||||
factory = helpers.formatter_factory,
|
-- factory = helpers.formatter_factory,
|
||||||
})
|
-- })
|
||||||
|
|
||||||
-- Check supported formatters and linters
|
-- Check supported formatters and linters
|
||||||
-- https://github.com/nvimtools/none-ls.nvim/tree/main/lua/null-ls/builtins/formatting
|
-- https://github.com/nvimtools/none-ls.nvim/tree/main/lua/null-ls/builtins/formatting
|
||||||
|
@ -52,7 +52,8 @@ return {
|
||||||
null_ls.builtins.formatting.csharpier,
|
null_ls.builtins.formatting.csharpier,
|
||||||
null_ls.builtins.formatting.nixfmt,
|
null_ls.builtins.formatting.nixfmt,
|
||||||
null_ls.builtins.formatting.stylua,
|
null_ls.builtins.formatting.stylua,
|
||||||
deno_fmt,
|
--deno_fmt,
|
||||||
|
null_ls.builtins.formatting.prettierd,
|
||||||
}
|
}
|
||||||
return config -- return final config table
|
return config -- return final config table
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -36,6 +36,7 @@ return {
|
||||||
"json",
|
"json",
|
||||||
"jsonc",
|
"jsonc",
|
||||||
"nix",
|
"nix",
|
||||||
|
"vhs",
|
||||||
"yaml",
|
"yaml",
|
||||||
-- Misc
|
-- Misc
|
||||||
"cuda",
|
"cuda",
|
||||||
|
|
|
@ -31,7 +31,8 @@ dap.adapters.codelldb = {
|
||||||
dap.adapters.cppdbg = {
|
dap.adapters.cppdbg = {
|
||||||
id = "cppdbg",
|
id = "cppdbg",
|
||||||
type = "executable",
|
type = "executable",
|
||||||
command = "{pkgs.vscode-extensions.ms-vscode.cpptools}/share/vscode/extensions/ms-vscode.cpptools/debugAdapters/bin/OpenDebugAD7",
|
command =
|
||||||
|
"{pkgs.vscode-extensions.ms-vscode.cpptools}/share/vscode/extensions/ms-vscode.cpptools/debugAdapters/bin/OpenDebugAD7",
|
||||||
}
|
}
|
||||||
|
|
||||||
-- @type DapAdapter
|
-- @type DapAdapter
|
||||||
|
@ -41,6 +42,13 @@ dap.adapters.coreclr = {
|
||||||
args = { "--interpreter=vscode" },
|
args = { "--interpreter=vscode" },
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- @type DapAdapter
|
||||||
|
dap.adapters.godot = {
|
||||||
|
type = "server",
|
||||||
|
host = "127.0.0.1",
|
||||||
|
port = 6006,
|
||||||
|
}
|
||||||
|
|
||||||
-- @type DapConfiguration
|
-- @type DapConfiguration
|
||||||
dap.configurations.rust = {
|
dap.configurations.rust = {
|
||||||
{
|
{
|
||||||
|
@ -94,3 +102,14 @@ dap.configurations.cs = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- @type DapConfiguration
|
||||||
|
dap.configurations.gdscript = {
|
||||||
|
{
|
||||||
|
name = "Launch scene",
|
||||||
|
type = "godot",
|
||||||
|
request = "launch",
|
||||||
|
project = "${workspaceFolder}",
|
||||||
|
scene = "current",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
|
@ -80,6 +80,10 @@ in
|
||||||
fcitx5-catppuccin
|
fcitx5-catppuccin
|
||||||
];
|
];
|
||||||
|
|
||||||
|
quickPhrase = {
|
||||||
|
proud = "<( ̄︶ ̄)>";
|
||||||
|
};
|
||||||
|
|
||||||
waylandFrontend = true;
|
waylandFrontend = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,10 +26,6 @@
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
virtualHosts."map.thewizard.link".extraConfig = ''
|
|
||||||
reverse_proxy 192.168.0.100:8123
|
|
||||||
'';
|
|
||||||
|
|
||||||
virtualHosts."git.thewizard.link".extraConfig = ''
|
virtualHosts."git.thewizard.link".extraConfig = ''
|
||||||
reverse_proxy 127.0.0.1:3788
|
reverse_proxy 127.0.0.1:3788
|
||||||
'';
|
'';
|
||||||
|
@ -38,5 +34,13 @@
|
||||||
root * /srv/files
|
root * /srv/files
|
||||||
file_server
|
file_server
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
virtualHosts."torrent.thewizard.link".extraConfig = ''
|
||||||
|
reverse_proxy 127.0.0.1:8144
|
||||||
|
'';
|
||||||
|
|
||||||
|
virtualHosts."shoko.thewizard.link".extraConfig = ''
|
||||||
|
reverse_proxy 127.0.0.1:8111
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue