v0.1.1
This commit is contained in:
parent
8b9d3c114d
commit
bcbd699c4c
11 changed files with 786 additions and 124 deletions
20
modules/home/rsydn/programs/helix.nix
Normal file
20
modules/home/rsydn/programs/helix.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
programs.helix = {
|
||||
enable = lib.mkDefault true;
|
||||
settings = {
|
||||
theme = "gruber-darker";
|
||||
editor = {
|
||||
cursor-shape = {
|
||||
normal = "block";
|
||||
insert = "bar";
|
||||
select = "underline";
|
||||
};
|
||||
};
|
||||
};
|
||||
languages.language = [{
|
||||
name = "nix";
|
||||
auto-format = true;
|
||||
formatter.command = "${pkgs.nixfmt-classic}/bin/nixfmt";
|
||||
}];
|
||||
};
|
||||
}
|
||||
12
modules/home/rsydn/programs/neovim.nix
Normal file
12
modules/home/rsydn/programs/neovim.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ inputs, pkgs, ... }:
|
||||
let
|
||||
system = pkgs.stdenv.hostPlatform.system;
|
||||
lazyvim = inputs."nvim-bundle".packages.${system}.neovim;
|
||||
in {
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
package = lazyvim;
|
||||
withNodeJs = true;
|
||||
withPython3 = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue