This commit is contained in:
Tyler Mayoff 2025-01-22 22:45:58 -05:00
parent 5235a1445c
commit 5005128920
4 changed files with 22 additions and 2 deletions

View file

@ -21,6 +21,8 @@
# Office # Office
libreoffice libreoffice
obsidian obsidian
(config.lib.nixGL.wrap unstable.onagre)
]; ];
# programs.vscode.enable = true; # programs.vscode.enable = true;

View file

@ -1,7 +1,12 @@
{pkgs, ...}: { {
config,
pkgs,
...
}: {
imports = [../common.nix ../gnome.nix ../home-backup.nix ../gui.nix]; imports = [../common.nix ../gnome.nix ../home-backup.nix ../gui.nix];
home.packages = with pkgs; [ home.packages = with pkgs; [
ventoy ventoy
(config.lib.nixGL.wrap renderdoc)
]; ];
} }

View file

@ -2,6 +2,7 @@
clangd = { command = "clangd", args = ["--header-insertion=never"]} clangd = { command = "clangd", args = ["--header-insertion=never"]}
biome = { command = "biome", args = ["lsp-proxy"] } biome = { command = "biome", args = ["lsp-proxy"] }
fish_lsp = {command = "fish-lsp", args = ["start"]} fish_lsp = {command = "fish-lsp", args = ["start"]}
slangd = {command = "slangd"}
[[language]] [[language]]
name = "fish" name = "fish"
@ -26,6 +27,18 @@ scope = "source.nix"
auto-format = true auto-format = true
formatter = { command = "alejandra", args = ["-q"] } formatter = { command = "alejandra", args = ["-q"] }
[[language]]
name = "slang"
scope = "source.slang"
file-types = ["slang"]
auto-format = true
language-servers = [{name = "slangd"}]
comment-token = "//"
[[grammar]]
name = "slang"
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-slang", rev = "3ed23c04a412a0559162d9cadf96dfff7cb36079" }
################## ##################
### BiomeJS Setup ### BiomeJS Setup
################## ##################

View file

@ -1,2 +1,2 @@
[manager] [manager]
ratio = [1, 1, 0] ratio = [0, 4, 0]