feat(editors): add helix
This commit is contained in:
parent
77aebac017
commit
025263531c
|
@ -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 ];
|
||||
|
||||
|
|
10
home/editors/helix/default.nix
Normal file
10
home/editors/helix/default.nix
Normal 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"; };
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue