feat: helix updates

This commit is contained in:
2026-07-26 09:40:20 +02:00
parent 067d1bbf12
commit 57389d9109
3 changed files with 93 additions and 12 deletions
Generated
+43
View File
@@ -268,6 +268,27 @@
"type": "github" "type": "github"
} }
}, },
"helix": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"rust-overlay": "rust-overlay_2"
},
"locked": {
"lastModified": 1784822617,
"narHash": "sha256-IYDL6Vnf13Sa+wbeXZTAxvdLA4h8Ew5ha0spcJy/Yk0=",
"owner": "helix-editor",
"repo": "helix",
"rev": "079a789e8cb08ead67f19e1971a1b7438b37354b",
"type": "github"
},
"original": {
"owner": "helix-editor",
"repo": "helix",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@@ -708,6 +729,7 @@
"lux-pkgs", "lux-pkgs",
"flake-parts" "flake-parts"
], ],
"helix": "helix",
"home-manager": "home-manager", "home-manager": "home-manager",
"import-tree": "import-tree", "import-tree": "import-tree",
"llm-agents": "llm-agents", "llm-agents": "llm-agents",
@@ -744,6 +766,27 @@
"type": "github" "type": "github"
} }
}, },
"rust-overlay_2": {
"inputs": {
"nixpkgs": [
"helix",
"nixpkgs"
]
},
"locked": {
"lastModified": 1775358767,
"narHash": "sha256-f2eC+WIfhjevCPQILuV08i/kmKZzYZpUvkom/33VxCA=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "20fd44bc663daa53a2575e01293e24e681d62244",
"type": "github"
},
"original": {
"owner": "oxalica",
"repo": "rust-overlay",
"type": "github"
}
},
"sops-nix": { "sops-nix": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
+4
View File
@@ -8,6 +8,10 @@
}; };
devenv.url = "github:cachix/devenv"; devenv.url = "github:cachix/devenv";
flake-parts.follows = "lux-pkgs/flake-parts"; flake-parts.follows = "lux-pkgs/flake-parts";
helix = {
url = "github:helix-editor/helix";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
+46 -12
View File
@@ -1,4 +1,4 @@
{ ... }: { inputs, ... }:
{ {
flake.modules.homeManager.helix = flake.modules.homeManager.helix =
{ pkgs, ... }: { pkgs, ... }:
@@ -31,14 +31,51 @@
{ {
programs.helix = { programs.helix = {
enable = true; enable = true;
package = inputs.helix.packages.${pkgs.stdenv.hostPlatform.system}.default;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
svelteLanguageServer svelteLanguageServer
nixd nixd
nixfmt nixfmt
oxfmt oxfmt
simple-completion-language-server
rust-analyzer
]; ];
settings = {
theme = "kanagawa";
editor = {
lsp = {
auto-document-highlight = true;
display-inlay-hints = true;
};
rainbow-brackets = true;
line-number = "relative";
cursorline = true;
gutters = [
"code-action-hint"
"diagnostics"
"spacer"
"line-numbers"
"spacer"
"diff"
];
color-modes = true;
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
};
};
languages = { languages = {
language-server.scls = {
command = "simple-completion-language-server";
environment.SNIPPETS_PATH = "${pkgs.vimPlugins.friendly-snippets}/snippets";
};
language = [ language = [
{ {
name = "svelte"; name = "svelte";
@@ -47,24 +84,21 @@
args = [ "--stdin-filepath=%{buffer_name}" ]; args = [ "--stdin-filepath=%{buffer_name}" ];
}; };
auto-format = true; auto-format = true;
language-servers = [
"scls"
"svelteserver"
];
} }
{ {
name = "nix"; name = "nix";
auto-format = true; auto-format = true;
} }
{
name = "rust";
auto-format = true;
}
]; ];
}; };
settings = {
theme = "kanagawa";
editor = {
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
};
};
}; };
}; };
} }