Format nix files

This commit is contained in:
Zeph Levy 2026-01-23 12:04:59 +01:00
parent 45b85d0452
commit f2fd2be328
30 changed files with 329 additions and 231 deletions

View file

@ -1,4 +1,5 @@
{ config, pkgs, ...}: {
{ config, pkgs, ... }:
{
programs.helix.enable = true;
programs.helix.settings = {
# theme = "everforest_dark";
@ -18,17 +19,17 @@
normal = "block";
select = "underline";
};
soft-wrap = {
enable = true;
wrap-indicator = " ";
};
whitespace = {
render = {
space = "all";
tab = "all";
newline = "none";
newline = "none";
};
characters = {
space = " ";
@ -40,8 +41,17 @@
};
statusline = {
left = [ "mode" "spinner" "diagnostics" ];
center = [ "file-name" "separator" "version-control" "separator"];
left = [
"mode"
"spinner"
"diagnostics"
];
center = [
"file-name"
"separator"
"version-control"
"separator"
];
separator = "";
mode.normal = "NORMAL";
mode.insert = "INSERT";
@ -62,7 +72,10 @@
keys = {
normal = {
l = "insert_mode";
esc = ["collapse_selection" "keep_primary_selection"];
esc = [
"collapse_selection"
"keep_primary_selection"
];
n = "move_char_left";
o = "move_char_right";
e = "move_line_down";