123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- # Manually merge and source plugins
- eval %sh{
- kak-lsp --kakoune -s $kak_session
- colorcol
- }
-
- # Initialization
-
- decl -hidden regex curword
-
- 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{modeline_git_branch} %val{bufname}
- %val{cursor_line}:%val{cursor_char_column} {{mode_info}}
- {{context_info}}◂%val{client}⊙%val{session}▸'
-
- set global connect_source "%val{config}/autoload/splug"
- set global connect_shell elvish
-
- unalias global e edit
- alias global e edit-or-dir
- alias global bd delete-buffer
- alias global bf buffer-first
- alias global bl buffer-last
- alias global bo buffer-only
- alias global bo! buffer-only-force
- alias global sw sudo-write
- alias global cdb change-directory-current-buffer
- alias global f find
- alias global s sort-selections
- alias global c connect-terminal
-
- face global LineNumbersWrapped black
-
- addhl global/number-lines number-lines -hlcursor -separator ' '
- addhl global/ruler column 80 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 ''
- addhl global/current-word dynregex '%opt{curword}' 0:+b
-
- # 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 'add phantom selection' <a-f> ': phantom-selection-add-selection<ret>'
- map global user -docstring 'clear all phantom selections' <a-F> ': phantom-selection-select-all<ret>: phantom-selection-clear<ret>'
- map global user -docstring 'next phantom selection' f ': phantom-selection-iterate-next<ret>'
- map global user -docstring 'previous phantom selection' F ': phantom-selection-iterate-prev<ret>'
-
- map global normal -docstring 'select view' <a-%> ': select-view<ret>'
- map global view -docstring 'select view' s '<esc>: select-view<ret>'
-
- map global user -docstring 'select selection on each line' <a-s> ': keep-selection-each-line<ret>'
- map global user -docstring 'drop selection on each line' S ': drop-selection-each-line<ret>'
-
- map global user -docstring 'add mark' m ': mark-word<ret>'
- map global user -docstring 'clear marks' M ': mark-clear<ret>'
-
- map global user -docstring 'replace mode' r ': replace<ret>'
-
- map global normal <a-space> ': fzf-mode<ret>'
-
- map global user -docstring 'expand selection' e ': expand<ret>'
- map global user -docstring 'expand repeat' E ': expand-repeat<ret>'
-
- map global user -docstring 'buffers…' b ': enter-buffers-mode<ret>'
- map global user -docstring 'buffers (lock)…' B ': enter-user-mode -lock buffers<ret>'
-
- map global user -docstring "next error" l ': lint-next-error<ret>'
- map global user -docstring "previous error" L ': lint-previous-error<ret>'
-
- declare-user-mode surround
- map global user -docstring 'surround mode' s ': enter-user-mode surround<ret>'
- map global surround -docstring 'surround' s ': surround<ret>'
- map global surround -docstring 'change' c ': change-surround<ret>'
- map global surround -docstring 'delete' d ': delete-surround<ret>'
- map global surround -docstring 'select surround' <a-s> ': select-surround<ret>'
- map global surround -docstring 'surround tag' S ': surrounding-tag<ret>'
- map global surround -docstring 'change tag' C ': change-surrounding-tag<ret>'
- map global surround -docstring 'delete tag' D ': delete-surrounding-tag<ret>'
- map global surround -docstring 'select surrounding tag' <a-S> ': select-surrounding-tag<ret>'
- map global surround -docstring 'auto-pairs surround' a ': auto-pairs-surround<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 -> insert mode' c '<a-|>xclip -i -f -sel c<ret><a-c>'
-
- # Functions
-
- def toggle-highlighter -params .. -docstring 'Toggle highlighter' %{
- try %{
- addhl window/%arg{@} %arg{@}
- echo -markup {green} %arg{@}
- } catch %{
- rmhl window/%arg{@}
- echo -markup {red} %arg{@}
- }
- }
-
- def type -params 1 -docstring 'Set buffer filetype' %{
- set buffer filetype %arg{1}
- }
-
- def lint-on-write -docstring 'Activate linting on buffer write' %{
- lint-enable
- hook buffer BufWritePost .* lint
- }
-
- 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 no-tabs -params 0..1 -docstring 'Indent with spaces' %{
- expandtab
- eval %sh{ [ -n "$1" ] && printf %s "
- set buffer indentwidth $1
- set buffer tabstop $1
- set buffer softtabstop $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 ModuleLoaded kitty %{
- set global kitty_window_type kitty
- }
-
- hook global ModuleLoaded fzf %{
- set global fzf_implementation sk
- set global fzf_file_command fd
- set global fzf_highlight_command bat
- set global fzf_sk_grep_command 'rg -LHn'
- }
-
- hook global WinDisplay .* info-buffers
- hook global NormalIdle .* %{ try %{ exec -draft '<a-i>w: palette-status<ret>' } }
- hook global BufWritePost .* %{ git show-diff }
- hook global BufReload .* %{ git show-diff }
-
- hook global WinCreate .* %{
- auto-pairs-enable
- search-highlighter-enable
- colorcol-enable
- colorcol-auto-refresh
- discord-presence-enable
- }
-
- hook global BufWritePre .* %{ nop %sh{
- mkdir -p "$(dirname "$kak_buffile")"
- }}
-
- hook global NormalIdle .* %{
- eval -draft %{ try %{
- exec <space><a-i>w <a-k>\A\w+\z<ret>
- set buffer curword "\b\Q%val{selection}\E\b"
- } catch %{
- set buffer curword ''
- } }
- }
-
- # 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 }
- hook global BufCreate .*\.rasi %{ set buffer filetype css }
-
- # 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|rust|c|cpp) %{
- lsp-engage
- }
-
- hook global WinSetOption filetype=html %{
- set buffer formatcmd 'prettier --parser html'
- set buffer lintcmd 'htmlhint -f unix'
- lint-on-write
- lsp-engage
- }
-
- hook global WinSetOption filetype=css %{
- set buffer formatcmd 'prettier --parser css'
- set buffer lintcmd 'stylelint -f unix'
- lint-on-write
- lsp-engage
- }
-
- hook global WinSetOption filetype=scss %{
- set buffer formatcmd 'prettier --parser scss'
- set buffer lintcmd 'stylelint -f unix'
- lint-on-write
- 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'
- set buffer makecmd 'nimble build'
- set buffer lintcmd 'nimlint'
- no-tabs 2
- lint-on-write
- lsp-engage
- }
|