chore: initial commit
This commit is contained in:
commit
cc4f3398ff
37 changed files with 2210 additions and 0 deletions
15
modules/editors/helix/config.toml
Normal file
15
modules/editors/helix/config.toml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
theme = "onedark"
|
||||
|
||||
[editor]
|
||||
line-number = "relative"
|
||||
mouse = true
|
||||
auto-completion = true
|
||||
|
||||
[editor.cursor-shape]
|
||||
insert = "bar"
|
||||
normal = "block"
|
||||
select = "underline"
|
||||
|
||||
[editor.file-picker]
|
||||
hidden = false
|
||||
|
||||
25
modules/editors/helix/home.nix
Normal file
25
modules/editors/helix/home.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
helix = { enable = true; };
|
||||
|
||||
};
|
||||
|
||||
xdg.configFile = { "helix/config.toml".source = ./config.toml; };
|
||||
|
||||
home.packages = with pkgs; [
|
||||
pyright
|
||||
nil
|
||||
taplo
|
||||
yaml-language-server
|
||||
terraform-ls
|
||||
lua-language-server
|
||||
rust-analyzer
|
||||
nixfmt
|
||||
nodePackages_latest.bash-language-server
|
||||
nodePackages_latest.typescript-language-server
|
||||
python311Packages.python-lsp-server
|
||||
];
|
||||
|
||||
}
|
||||
0
modules/editors/helix/languages.toml
Normal file
0
modules/editors/helix/languages.toml
Normal file
Loading…
Add table
Add a link
Reference in a new issue