a dotfile but it's really big
0
fork

Configure Feed

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

helix: new C-e keybind.

karitham b4ce6120 b600d602

+5 -6
+4
modules/dev/editor/helix.nix
··· 102 102 "+" = plusMenu; 103 103 "-" = runMenu; 104 104 "g" = goMenu; 105 + "C-e" = [ 106 + "goto_file_end" 107 + "open_below" 108 + ]; 105 109 } 106 110 // scrollFast; 107 111 select = {
+1 -6
modules/dev/shell/nushell.nix
··· 34 34 let msg = $"Log update: ($now | format date '%F %T')" 35 35 36 36 if (jj log --no-graph -r $"@- & files\('logs')" | is-not-empty) { 37 - jj squash --ignore-immutable 38 - jj describe -r @- -m $msg 39 - 40 - # After squash, the valid commit is @- (the working copy becomes empty/new) 37 + jj squash --ignore-immutable --message $msg 41 38 jj bookmark set main -r @- 42 39 jj git push -b main 43 - 44 - return 45 40 } else { 46 41 jj describe -m $msg 47 42 jj bookmark set main -r @