summaryrefslogtreecommitdiff
path: root/configuration/home-manager/core/helix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configuration/home-manager/core/helix.nix')
-rw-r--r--configuration/home-manager/core/helix.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/configuration/home-manager/core/helix.nix b/configuration/home-manager/core/helix.nix
deleted file mode 100644
index 42861ce..0000000
--- a/configuration/home-manager/core/helix.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ pkgs, inputs, ... }:
-{
- home.sessionVariables = { EDITOR = "hx"; };
- home.file = {
- helix-ferra = {
- source = ../../../assets/helix-wavez.toml;
- target = ".config/helix/themes/wavez.toml";
- };
- };
-
- programs.helix = {
- enable = true;
- package = inputs.helix.packages."${pkgs.system}".helix;
- defaultEditor = true;
- settings = {
- theme = "wavez";
- keys.normal = {
- space.F = "file_picker_in_current_buffer_directory";
- };
- editor = {
- end-of-line-diagnostics = "hint";
- line-number = "relative";
- bufferline = "always";
- auto-save = false;
-
- inline-diagnostics = {
- cursor-line = "error";
- };
-
- lsp = {
- enable = true;
- display-messages = true;
- };
-
- indent-guides = {
- render = true;
- skip-levels = 1;
- };
- };
- };
- };
-}