Compare commits
No commits in common. "c33c3737f10b4fb63152f8d95e6bdcb5870d87cd" and "98dde2b3972eec5595bfb0b8ed4053d73be461b7" have entirely different histories.
c33c3737f1
...
98dde2b397
|
@ -37,21 +37,17 @@
|
||||||
libreoffice
|
libreoffice
|
||||||
|
|
||||||
# Creative work
|
# Creative work
|
||||||
aseprite
|
|
||||||
blender
|
blender
|
||||||
krita
|
krita
|
||||||
lmms
|
lmms
|
||||||
orca-slicer
|
#orca-slicer # FIXME: Broken right now, gotta wait for PR 369729
|
||||||
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
|
||||||
|
@ -69,7 +65,6 @@
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
beekeeper-studio
|
beekeeper-studio
|
||||||
godot_4
|
|
||||||
hoppscotch
|
hoppscotch
|
||||||
lazygit
|
lazygit
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,8 @@ in
|
||||||
|
|
||||||
window = {
|
window = {
|
||||||
decorations = "None";
|
decorations = "None";
|
||||||
opacity = 0.8;
|
opacity = 0.88;
|
||||||
|
blur = true;
|
||||||
|
|
||||||
padding = {
|
padding = {
|
||||||
x = 18;
|
x = 18;
|
||||||
|
|
|
@ -385,11 +385,6 @@ 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,7 +115,6 @@ in
|
||||||
vscode-extensions.vadimcn.vscode-lldb
|
vscode-extensions.vadimcn.vscode-lldb
|
||||||
|
|
||||||
# Vue
|
# Vue
|
||||||
prettierd
|
|
||||||
vue-language-server
|
vue-language-server
|
||||||
|
|
||||||
# Svelte
|
# Svelte
|
||||||
|
|
|
@ -25,7 +25,6 @@ return {
|
||||||
"c",
|
"c",
|
||||||
"cpp",
|
"cpp",
|
||||||
"cs",
|
"cs",
|
||||||
"gdscript",
|
|
||||||
"h",
|
"h",
|
||||||
"javascript",
|
"javascript",
|
||||||
"jsx",
|
"jsx",
|
||||||
|
@ -59,7 +58,6 @@ 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,8 +52,7 @@ 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,7 +36,6 @@ return {
|
||||||
"json",
|
"json",
|
||||||
"jsonc",
|
"jsonc",
|
||||||
"nix",
|
"nix",
|
||||||
"vhs",
|
|
||||||
"yaml",
|
"yaml",
|
||||||
-- Misc
|
-- Misc
|
||||||
"cuda",
|
"cuda",
|
||||||
|
|
|
@ -31,8 +31,7 @@ dap.adapters.codelldb = {
|
||||||
dap.adapters.cppdbg = {
|
dap.adapters.cppdbg = {
|
||||||
id = "cppdbg",
|
id = "cppdbg",
|
||||||
type = "executable",
|
type = "executable",
|
||||||
command =
|
command = "{pkgs.vscode-extensions.ms-vscode.cpptools}/share/vscode/extensions/ms-vscode.cpptools/debugAdapters/bin/OpenDebugAD7",
|
||||||
"{pkgs.vscode-extensions.ms-vscode.cpptools}/share/vscode/extensions/ms-vscode.cpptools/debugAdapters/bin/OpenDebugAD7",
|
|
||||||
}
|
}
|
||||||
|
|
||||||
-- @type DapAdapter
|
-- @type DapAdapter
|
||||||
|
@ -42,13 +41,6 @@ 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 = {
|
||||||
{
|
{
|
||||||
|
@ -102,14 +94,3 @@ dap.configurations.cs = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- @type DapConfiguration
|
|
||||||
dap.configurations.gdscript = {
|
|
||||||
{
|
|
||||||
name = "Launch scene",
|
|
||||||
type = "godot",
|
|
||||||
request = "launch",
|
|
||||||
project = "${workspaceFolder}",
|
|
||||||
scene = "current",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
|
@ -80,10 +80,6 @@ in
|
||||||
fcitx5-catppuccin
|
fcitx5-catppuccin
|
||||||
];
|
];
|
||||||
|
|
||||||
quickPhrase = {
|
|
||||||
proud = "<( ̄︶ ̄)>";
|
|
||||||
};
|
|
||||||
|
|
||||||
waylandFrontend = true;
|
waylandFrontend = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
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
|
||||||
'';
|
'';
|
||||||
|
@ -34,13 +38,5 @@
|
||||||
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