this repo has no description
0
fork

Configure Feed

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

:sparkles: (Helix) configuration

+39
+2
home/default.nix
··· 16 16 ./git 17 17 ./gtk 18 18 ./halloy 19 + ./helix 19 20 ./neovim 20 21 ./vscode 21 22 ./zed ··· 38 39 bat 39 40 fzf 40 41 btop 42 + gopls 41 43 42 44 # Tools 43 45 pass
+26
home/helix/config.toml
··· 1 + theme = "nyxvamp-obsidian" 2 + 3 + [editor] 4 + line-number = "relative" 5 + cursorline = true 6 + end-of-line-diagnostics = "hint" 7 + trim-trailing-whitespace = true 8 + 9 + [editor.file-picker] 10 + hidden = false 11 + 12 + [editor.statusline] 13 + left = ["mode", "version-control", "file-name", "file-modification-indicator"] 14 + mode.normal = "NORMAL" 15 + mode.insert = "INSERT" 16 + mode.select = "SELECT" 17 + 18 + [editor.soft-wrap] 19 + enable = true 20 + 21 + [editor.whitespace.render] 22 + space = "all" 23 + tab = "all" 24 + 25 + [editor.inline-diagnostics] 26 + cursor-line = "error"
+6
home/helix/default.nix
··· 1 + {pkgs, ...}: { 2 + programs.helix.enable = true; 3 + 4 + home.file.".config/helix/config.toml".source = ./config.toml; 5 + home.file.".config/helix/languages.toml".source = ./languages.toml; 6 + }
+5
home/helix/languages.toml
··· 1 + [languages-server.gopls] 2 + command = "gopls" 3 + args = ["-logfile=/tmp/gopls.log", "serve"] 4 + [language-server.gopls.config] 5 + "ui.diagnostic.staticcheck" = true