My Nix Configuration
1{ 2 editor = { 3 line-number = "absolute"; 4 mouse = false; 5 auto-save = true; 6 true-color = true; 7 bufferline = "multiple"; 8 cursor-shape = { 9 normal = "block"; 10 insert = "bar"; 11 select = "underline"; 12 }; 13 lsp = { 14 display-messages = true; 15 auto-signature-help = true; 16 display-signature-help-docs = true; 17 }; 18 whitespace.render = { 19 space = "none"; 20 tab = "all"; 21 newline = "all"; 22 }; 23 indent-guides.render = true; 24 }; 25}