mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
fix prettier
This commit is contained in:
18
flake.lock
generated
18
flake.lock
generated
@@ -169,11 +169,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1700794826,
|
"lastModified": 1701253981,
|
||||||
"narHash": "sha256-RyJTnTNKhO0yqRpDISk03I/4A67/dp96YRxc86YOPgU=",
|
"narHash": "sha256-ztaDIyZ7HrTAfEEUt9AtTDNoCYxUdSd6NrRHaYOIxtk=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5a09cb4b393d58f9ed0d9ca1555016a8543c2ac8",
|
"rev": "e92039b55bcd58469325ded85d4f58dd5a4eaf58",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -193,11 +193,11 @@
|
|||||||
"pre-commit-hooks": "pre-commit-hooks"
|
"pre-commit-hooks": "pre-commit-hooks"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1700392689,
|
"lastModified": 1701379698,
|
||||||
"narHash": "sha256-5eHyyjJjWOORscfN6byD4wuV6qH2g0kN+N3OP8MybL4=",
|
"narHash": "sha256-u4wV7iI5XCMkj/BSyr9sih9WgevnYhw01nFWAerFEGE=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "nixvim",
|
"repo": "nixvim",
|
||||||
"rev": "c2ccb2dfabbac067193119cae4fd46d78acc03a2",
|
"rev": "28fc85484ab827912b1785484dd709c62d9a8237",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -245,11 +245,11 @@
|
|||||||
"nixpkgs-stable": "nixpkgs-stable"
|
"nixpkgs-stable": "nixpkgs-stable"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1699271226,
|
"lastModified": 1700922917,
|
||||||
"narHash": "sha256-8Jt1KW3xTjolD6c6OjJm9USx/jmL+VVmbooADCkdDfU=",
|
"narHash": "sha256-ej2fch/T584b5K9sk1UhmZF7W6wEfDHuoUYpFN8dtvM=",
|
||||||
"owner": "cachix",
|
"owner": "cachix",
|
||||||
"repo": "pre-commit-hooks.nix",
|
"repo": "pre-commit-hooks.nix",
|
||||||
"rev": "ea758da1a6dcde6dc36db348ed690d09b9864128",
|
"rev": "e5ee5c5f3844550c01d2131096c7271cec5e9b78",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -249,6 +249,8 @@ in {
|
|||||||
|
|
||||||
["@variable"] = {link = "Constant"},
|
["@variable"] = {link = "Constant"},
|
||||||
["@field"] = {link = "Constant"},
|
["@field"] = {link = "Constant"},
|
||||||
|
["@label.json"] = {link = "Constant"},
|
||||||
|
["@label.jsonc"] = {link = "Constant"},
|
||||||
["@property"] = {link = "Constant"},
|
["@property"] = {link = "Constant"},
|
||||||
["@property.typescript"] = {link = "@property"},
|
["@property.typescript"] = {link = "@property"},
|
||||||
["@lsp.type.property"] = {link = "Constant"},
|
["@lsp.type.property"] = {link = "Constant"},
|
||||||
@@ -372,7 +374,12 @@ in {
|
|||||||
};
|
};
|
||||||
formatting = {
|
formatting = {
|
||||||
alejandra.enable = true;
|
alejandra.enable = true;
|
||||||
prettier_d_slim.enable = true;
|
prettier = {
|
||||||
|
enable = true;
|
||||||
|
withArgs = ''
|
||||||
|
{extra_filetypes = {"svelte"}}
|
||||||
|
'';
|
||||||
|
};
|
||||||
rustfmt.enable = true;
|
rustfmt.enable = true;
|
||||||
shfmt.enable = true;
|
shfmt.enable = true;
|
||||||
stylua.enable = true;
|
stylua.enable = true;
|
||||||
@@ -419,13 +426,20 @@ in {
|
|||||||
html.enable = true;
|
html.enable = true;
|
||||||
cssls.enable = true;
|
cssls.enable = true;
|
||||||
svelte.enable = true;
|
svelte.enable = true;
|
||||||
tsserver.enable = true;
|
tsserver = {
|
||||||
|
enable = true;
|
||||||
|
onAttach.function = "client.server_capabilities.documentFormattingProvider = false";
|
||||||
|
};
|
||||||
|
|
||||||
yamlls.enable = true;
|
yamlls.enable = true;
|
||||||
jsonls.enable = true;
|
jsonls.enable = true;
|
||||||
taplo.enable = true;
|
taplo.enable = true;
|
||||||
|
|
||||||
rust-analyzer.enable = true;
|
rust-analyzer = {
|
||||||
|
enable = true;
|
||||||
|
installCargo = false;
|
||||||
|
installRustc = false;
|
||||||
|
};
|
||||||
pylsp.enable = true;
|
pylsp.enable = true;
|
||||||
|
|
||||||
nixd.enable = true;
|
nixd.enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user