update: huge style update

This commit is contained in:
2026-03-13 10:37:01 +03:00
parent 1dea8c1a69
commit c49c97d55c
55 changed files with 686 additions and 332 deletions

View File

@@ -1,29 +1,85 @@
[mgr]
prepend_keymap = [
{on = [ ";" ], run = 'shell "$SHELL" --block --confirm', desc = "Open shell here"},
[[mgr.prepend_keymap]]
on = [ ";" ]
run = 'shell "$SHELL" --block --confirm'
desc = "Open shell here"
{on = [ ":","q","a","<Enter>" ], run = 'quit', desc = "Close the current tab"},
{on = [ ":","q","<Enter>" ], run = 'close', desc = "Close the current tab"},
[[mgr.prepend_keymap]]
on = [ ":","q","a","<Enter>" ]
run = 'quit'
desc = "Close the current tab"
[[mgr.prepend_keymap]]
on = [ ":","q","<Enter>" ]
run = 'close'
desc = "Close the current tab"
# Makes "Enter" key necessary to press
{on = [ ":","q","a","<Esc>" ], run = 'echo meow', desc = ""},
# Makes "Enter" key necessary to press
[[mgr.prepend_keymap]]
on = [ ":","q","a","<Esc>" ]
run = 'echo meow'
desc = ""
{on = [ "q" ], run = 'noop'},
[[mgr.prepend_keymap]]
on = [ "q" ]
run = 'noop'
{on = [ "g","e" ], run = 'cd /etc', desc = "Go to /etc"},
{on = [ "g","r" ], run = 'cd /', desc = "Go to /"},
{on = [ "g","s" ], run = 'cd /srv', desc = "Go to /srv"},
{on = [ "g","u" ], run = 'cd /usr', desc = "Go to /usr"},
{on = [ "g","v" ], run = 'cd /var', desc = "Go to /var"},
{on = [ "g","c" ], run = 'cd ~/.config', desc = "Go to .config"},
{on = [ "v" ], run = 'select_all --state=true', desc = "Select all files"},
{on = [ "V" ], run = 'visual_mode', desc = "Enter visual mode"},
[[mgr.prepend_keymap]]
on = [ "g","r" ]
run = 'cd /'
desc = "Go to /"
[[mgr.prepend_keymap]]
on = [ "g","u" ]
run = 'cd /usr'
desc = "Go to /usr"
[[mgr.prepend_keymap]]
on = [ "g","e" ]
run = 'cd /etc'
desc = "Go to /etc"
[[mgr.prepend_keymap]]
on = [ "g","v" ]
run = 'cd /var'
desc = "Go to /var"
{on = [ "y" ], run = [
'shell -- for path in "$@"; do echo "file://$path"; done | wl-copy -t text/uri-list',
"yank"
]},
[[mgr.prepend_keymap]]
on = [ "g","a" ]
run = 'cd /run/media/eugenebee'
desc = "Go to attached devices"
{on = [ "D", "<Enter>" ], run = 'remove --force --permanently', desc = "Permanently delete"},
[[mgr.prepend_keymap]]
on = [ "g","c" ]
run = 'cd ~/.config'
desc = "Go to .config"
[[mgr.prepend_keymap]]
on = [ "g","d" ]
run = 'cd ~/Downloads'
desc = "Go to Downloads"
[[mgr.prepend_keymap]]
on = [ "g","p" ]
run = 'cd ~/Pictures'
desc = "Go to Pictures"
[[mgr.prepend_keymap]]
on = [ "v" ]
run = 'select_all --state=true'
desc = "Select all files"
[[mgr.prepend_keymap]]
on = [ "V" ]
run = 'visual_mode'
desc = "Enter visual mode"
[[mgr.prepend_keymap]]
on = [ "y" ]
run = [
'shell -- for path in "$@"; do echo "file://$path"; done | wl-copy -t text/uri-list',
"yank"
]
[[mgr.prepend_keymap]]
on = "<C-y>"
run = ["plugin wl-clipboard"]
[[mgr.prepend_keymap]]
on = [ "D", "<Enter>" ]
run = 'remove --force --permanently'
desc = "Permanently delete"