{ pkgs, ... }: let toml = pkgs.formats.toml {}; in { xdg.config.files."helix/config.toml".source = toml.generate "config.toml" { theme = "base16_transparent"; editor = { mouse = false; true-color = true; middle-click-paste = false; auto-completion = false; path-completion = true; auto-format = false; auto-info = false; scroll-lines = 5; scrolloff = 10; lsp.enable = false; smart-tab.enable = false; cursor-shape = { normal = "bar"; insert = "bar"; select = "block"; }; indent-guides = { render = true; character = "│"; skip-levels = 1; }; }; }; }