Created initial assets

This commit is contained in:
2025-10-07 10:43:34 -06:00
parent 377ab91af7
commit 88288a98b6
5 changed files with 58 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
def _loki_nushell [] {
let _prev = (commandline)
if ($_prev != "") {
print '⌛'
commandline edit -r (loki -e $_prev)
}
}
$env.config.keybindings = ($env.config.keybindings | append {
name: loki_integration
modifier: alt
keycode: char_e
mode: [emacs, vi_insert]
event:[
{
send: executehostcommand,
cmd: "_loki_nushell"
}
]
}
)