AutoYADM commit: 2025-05-08 23:26:19

This commit is contained in:
Daniel Fichtinger 2025-05-08 23:26:19 -04:00
parent 2c174fe3cc
commit 0a5693d46f
6 changed files with 27 additions and 0 deletions

View file

@ -43,3 +43,14 @@ bundle easymotion.kak https://git.sr.ht/~voroskoi/easymotion.kak %{
bundle byline.kak https://github.com/evanrelf/byline.kak %{ bundle byline.kak https://github.com/evanrelf/byline.kak %{
require-module "byline" require-module "byline"
} }
bundle case.kak https://gitlab.com/FlyingWombat/case.kak %{
map global normal '`' ': enter-user-mode case<ret>'
}
bundle kakoune-hump https://github.com/delapouite/kakoune-hump %{
map global normal <c-b> ': select-previous-hump<ret>' -docstring 'select prev hump'
map global normal <c-w> ': select-next-hump<ret>' -docstring 'select next hump'
map global normal <c-B> ': extend-previous-hump<ret>' -docstring 'extend prev hump'
map global normal <c-W> ': extend-next-hump<ret>' -docstring 'extend next hump'
}

View file

@ -0,0 +1 @@
https://gitlab.com/FlyingWombat/case.kak

View file

@ -0,0 +1,2 @@
source "/home/fic/.config/kak/bundle/case.kak/rc/case.kak"
trigger-user-hook bundle-loaded=case.kak

View file

@ -0,0 +1 @@
https://github.com/delapouite/kakoune-hump

View file

@ -0,0 +1,2 @@
source "/home/fic/.config/kak/bundle/kakoune-hump/hump.kak"
trigger-user-hook bundle-loaded=kakoune-hump

View file

@ -50,3 +50,13 @@ map -docstring "goto next buffer" global user i ": bn<ret>"
map global normal <tab> _ map global normal <tab> _
map -docstring "commenct line" global normal <c-v> ":comment-line<ret>" map -docstring "commenct line" global normal <c-v> ":comment-line<ret>"
declare-user-mode git
map -docstring "git" global user g ": enter-user-mode git<ret>"
map -docstring "lazygit" global git g ": terminal lazygit"
def git_blame %{
info %sh{
git -C $(dirname $(realpath $kak_buffile)) blame -L $kak_cursor_line,$kak_cursor_line $(realpath $kak_buffile)
}
}
map -docstring "blame" global git b ": git_blame"