mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:59:41 +00:00
43 lines
971 B
Nix
43 lines
971 B
Nix
|
{pkgs, ...}: {
|
||
|
programs.helix = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
theme = "tokyonight";
|
||
|
editor = {
|
||
|
line-number = "relative";
|
||
|
lsp.display-messages = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
languages = {
|
||
|
language = [
|
||
|
{
|
||
|
name = "python";
|
||
|
scope = "source.python";
|
||
|
injection-regex = "python";
|
||
|
file-types = ["py" "pyi" "py3" "pyw" ".pythonstartup" ".pythonrc"];
|
||
|
shebangs = ["python"];
|
||
|
roots = ["." "pyproject.toml" "pyrightconfig.json"];
|
||
|
comment-token = "#";
|
||
|
language-servers = ["basedpyright" "ruff"];
|
||
|
indent = {
|
||
|
tab-width = 4;
|
||
|
unit = " ";
|
||
|
};
|
||
|
auto-format = true;
|
||
|
}
|
||
|
];
|
||
|
language-server = {
|
||
|
ruff = {
|
||
|
command = "ruff-lsp";
|
||
|
};
|
||
|
basedpyright = {
|
||
|
command = "basedpyright-langserver";
|
||
|
args = ["--stdio"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|