From 025263531c084f3a5cdcf4a3d202b0e5ef0501c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Tue, 2 Aug 2022 20:10:44 +0200 Subject: [PATCH] feat(editors): add helix --- home/editors/default.nix | 2 +- home/editors/helix/default.nix | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 home/editors/helix/default.nix diff --git a/home/editors/default.nix b/home/editors/default.nix index 2056944..8d3c712 100644 --- a/home/editors/default.nix +++ b/home/editors/default.nix @@ -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 ]; diff --git a/home/editors/helix/default.nix b/home/editors/helix/default.nix new file mode 100644 index 0000000..6d74ead --- /dev/null +++ b/home/editors/helix/default.nix @@ -0,0 +1,10 @@ +{ config, lib, pkgs, ... }: + +{ + # TODO use tree-sitter grammars from nixpkgs + programs.helix = { + enable = true; + languages = [ ]; + settings = { theme = "base16_default_dark"; }; + }; +}