chore: initial commit

This commit is contained in:
Glen Goodwin 2023-06-06 23:58:36 -04:00
commit cc4f3398ff
37 changed files with 2210 additions and 0 deletions

View 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

View 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
];
}

View file