123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- # External plugins
-
- eval %sh{
- kak-lsp --kakoune -s $kak_session
- colorcol
- }
-
- # Initialization
-
- require-module prelude
- require-module search-highlighter
- require-module word-select
- require-module replace-mode
-
- set global ui_options ncurses_assistant=none
- set global scrolloff 7,7
- set global autoreload yes
- set global grepcmd 'rg -iHL --column'
- set global modelinefmt '%opt{git_branch} %val{bufname}
- %val{cursor_line}:%val{cursor_char_column} {{mode_info}}
- {{context_info}}◂%val{client}⊙%val{session}▸'
-
- alias global sw sudo-write
- alias global cdb change-directory-current-buffer
- alias global f find
- alias global g grep
-
- face global LineNumbersWrapped black
-
- addhl global/number-lines number-lines -hlcursor -separator ' '
- addhl global/ruler column 100 default,rgb:303030
- addhl global/trailing-whitespace regex '\h+$' 0:default,red
- addhl global/todo regex \b(TODO|FIXME|XXX|NOTE)\b 0:default+rb
- addhl global/matching-brackets show-matching
- addhl global/wrap wrap -word -indent -marker ''
-
- # Keybinds
-
- map global normal <space> ,
- map global normal -docstring 'remove all sels except main' <backspace> <space>
- map global normal -docstring 'remove main sel' <a-backspace> <a-space>
- map global normal -docstring 'comment line' '#' ': comment-line<ret>'
- map global normal -docstring 'comment block' '<a-#>' ': comment-block<ret>'
- map global normal -docstring 'delete to end of line' D <a-l>d
- map global normal -docstring 'yank to end of line' Y <a-l>
- map global user -docstring 'replay macro' . q
- map global user -docstring 'record macro' <a-.> Q
-
- map global normal w ': word-select-next-word<ret>'
- map global normal <a-w> ': word-select-next-big-word<ret>'
- map global normal q ': word-select-previous-word<ret>'
- map global normal <a-q> ': word-select-previous-big-word<ret>'
- map global normal Q B
- map global normal <a-Q> <a-B>
-
- map global user -docstring 'replace mode' r ': enter-replace-mode<ret>'
-
- map global user -docstring 'change directory' c ': enter-user-mode cd<ret>'
-
- map global user -docstring 'expand selection' e ': expand<ret>'
- map global user -docstring 'expand repeat' E ': expand-repeat<ret>'
-
- map global normal -docstring 'buffers…' b ': enter-buffers-mode<ret>'
- map global normal -docstring 'buffers (lock)…' B ': enter-user-mode -lock buffers<ret>'
- map global normal -docstring 'select buffer' <a-b> ': explore-buffers<ret>'
-
- declare-user-mode anchor
- map global normal ';' ': enter-user-mode anchor<ret>'
- map global anchor -docstring 'ensure anchor after cursor' h '<a-:><a-;>'
- map global anchor -docstring 'ensure cursor after anchor' l '<a-:>'
- map global anchor -docstring 'flip cursor and anchor' f '<a-;>'
- map global anchor -docstring 'reduce to anchor' a '<a-;>;'
- map global anchor -docstring 'reduce to cursor' c ';'
- map global anchor -docstring 'select cursor and anchor' s '<a-S>'
-
- declare-user-mode clipboard
- map global normal ',' ': enter-user-mode clipboard<ret>'
- map global clipboard -docstring 'clip-paste after' p '<a-!>xsel -b -o<ret>'
- map global clipboard -docstring 'clip-paste before' P '!xsel -b -o<ret>'
- map global clipboard -docstring 'clip-paste replace' R '|xsel -b -o<ret>'
- map global clipboard -docstring 'clip-yank' y '<a-|>xclip -i -f -sel c<ret>'
- map global clipboard -docstring 'clip-cut' d '<a-|>xclip -i -f -sel c<ret><a-d>'
- map global clipboard -docstring 'clip-cut -> insert mode' c '<a-|>xclip -i -f -sel c<ret><a-c>'
-
- # Functions
-
- def type -params 1 -docstring 'Set buffer filetype' %{
- set buffer filetype %arg{1}
- }
-
- def lint-engage -docstring 'Enable linting' %{
- lint-enable
- map global user -docstring "next error" l ': lint-next-error<ret>'
- map global user -docstring "previous error" L ': lint-previous-error<ret>'
- }
-
- def lsp-engage -docstring 'Enable language server' %{
- lsp-enable
- lsp-auto-hover-enable
- map global user -docstring 'Enter lsp user mode' <a-l> ': enter-user-mode lsp<ret>'
- }
-
- def lsp-semantic-highlighting -docstring 'Enable semantic highlighting' %{
- hook window -group semantic-tokens BufReload .* lsp-semantic-tokens
- hook window -group semantic-tokens NormalIdle .* lsp-semantic-tokens
- hook window -group semantic-tokens InsertIdle .* lsp-semantic-tokens
- hook -once -always window WinSetOption filetype=.* %{
- remove-hooks window semantic-tokens
- }
- }
-
- def lint-on-write -docstring 'Activate linting on buffer write' %{
- lint-engage
- hook buffer BufWritePost .* lint
- }
-
- def set-indent -params 1 -docstring 'Set indentation width' %{
- set buffer indentwidth %arg{1}
- set buffer tabstop %arg{1}
- set buffer softtabstop %arg{1}
- }
-
- def no-tabs -params 1 -docstring 'Indent with spaces' %{
- expandtab
- set-indent %arg{1}
- hook buffer InsertKey <space> %{ try %{
- exec -draft h<a-i><space><a-k>^\h+<ret>
- exec -with-hooks <tab>
- }}
- }
-
- def clean-trailing-whitespace -docstring 'Remove trailing whitespace' %{
- try %{ exec -draft '%s\h+$<ret>d' }
- }
-
- # Hooks
-
- hook global WinCreate .* %{
- smarttab
- readline-enable
- colorcol-enable
- colorcol-refresh-continuous
- search-highlighter-enable
- }
-
- hook global KakBegin .* %{
- state-save-reg-load colon
- state-save-reg-load pipe
- state-save-reg-load slash
- }
-
- hook global KakEnd .* %{
- state-save-reg-save colon
- state-save-reg-save pipe
- state-save-reg-save slash
- }
-
- hook global WinDisplay .* info-buffers
-
- hook global BufWritePre .* %{ nop %sh{
- mkdir -p "$(dirname "$kak_buffile")"
- }}
-
- eval %sh{ git rev-parse --is-inside-work-tree 2>/dev/null 1>/dev/null && printf %s "
- hook global BufWritePost .* %{ git show-diff }
- hook global BufReload .* %{ git show-diff }
- "}
-
- hook global ModuleLoaded kitty %{
- set global kitty_window_type kitty
- }
-
- # Filetype detection
-
- hook global BufCreate .*srcpkgs/.+/template$ %{
- set buffer filetype sh
- def xgensum %{ %sh{ xgensum -i "$kak_buffile" } }
- }
-
- hook global BufCreate .*/\.?((sx|xinit)(rc)?|profile) %{ set buffer filetype sh }
- hook global BufCreate .*\.ino %{ set buffer filetype cpp }
- hook global BufCreate .*\.cs %{ addhl buffer/java ref java }
- hook global BufCreate .*\.rasi %{ set buffer filetype css }
- hook global BufCreate .*\.sccprofile %{ set buffer filetype json }
-
- # Filetype settings
-
- hook global WinSetOption filetype=sh %{
- set buffer lintcmd 'shellcheck --norc -x -f gcc'
- lint-on-write
- }
-
- hook global WinSetOption filetype=elvish %{
- no-tabs 2
- }
-
- hook global WinSetOption filetype=go %{
- lsp-engage
- }
-
- hook global WinSetOption filetype=(c|cpp) %{
- set buffer formatcmd clang-format
- lsp-engage
- }
-
- hook global WinSetOption filetype=rust %{
- hook window -group rust-inlay-hints BufReload .* rust-analyzer-inlay-hints
- hook window -group rust-inlay-hints NormalIdle .* rust-analyzer-inlay-hints
- hook window -group rust-inlay-hints InsertIdle .* rust-analyzer-inlay-hints
- hook -once -always window WinSetOption filetype=.* %{
- remove-hooks window rust-inlay-hints
- }
- lsp-engage
- }
-
- hook global WinSetOption filetype=markdown %{
- set buffer formatcmd 'prettier --parser markdown'
- }
-
- hook global WinSetOption filetype=python %{
- set global lsp_server_configuration pyls.plugins.jedi_completion.include_params=false
- lsp-engage
- }
-
- hook global WinSetOption filetype=nim %{
- set buffer gdb_program 'nim-gdb'
- set buffer formatcmd 'nimprettify'
- no-tabs 2
- lsp-engage
- }
|