My NixOS and Home Manager configurations
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

helix: enable rainbow-brackets and cleanup config

quasigod 649c7ca6 80e580da

+14 -22
+14 -22
modules/apps/helix.nix
··· 48 48 space."=" = ":format"; 49 49 }; 50 50 editor = { 51 - shell = [ 52 - "bash" 53 - "-c" 54 - ]; 55 - cursorline = true; 56 - cursorcolumn = true; 57 51 color-modes = true; 58 - file-picker = { 59 - hidden = true; 60 - git-ignore = true; 61 - }; 62 - line-number = "relative"; 63 - lsp = { 64 - # display-messages = true; 65 - display-inlay-hints = true; 66 - }; 67 - inline-diagnostics = { 68 - cursor-line = "hint"; 69 - }; 52 + cursorcolumn = true; 53 + cursorline = true; 70 54 end-of-line-diagnostics = "error"; 55 + inline-diagnostics.cursor-line = "hint"; 56 + line-number = "relative"; 57 + lsp.display-inlay-hints = true; 58 + rainbow-brackets = true; 71 59 soft-wrap.enable = true; 60 + indent-guides = { 61 + render = true; 62 + skip-levels = 1; 63 + }; 72 64 cursor-shape = { 73 65 insert = "bar"; 74 66 normal = "block"; 75 67 select = "underline"; 76 68 }; 69 + shell = [ 70 + "bash" 71 + "-c" 72 + ]; 77 73 statusline = { 78 74 left = [ 79 75 "mode" ··· 90 86 "position-percentage" 91 87 ]; 92 88 separator = "|"; 93 - }; 94 - indent-guides = { 95 - render = true; 96 - skip-levels = 1; 97 89 }; 98 90 }; 99 91 };