feat(editors): add helix

This commit is contained in:
Felix Schröter 2022-08-02 20:10:44 +02:00
parent 77aebac017
commit 025263531c
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 11 additions and 1 deletions

View file

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
imports = [ ./lsp.nix ./dap.nix ./neovim ];
imports = [ ./lsp.nix ./dap.nix ./neovim ./helix ];
home.packages = with pkgs; [ fzf ripgrep ];

View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
# TODO use tree-sitter grammars from nixpkgs
programs.helix = {
enable = true;
languages = [ ];
settings = { theme = "base16_default_dark"; };
};
}