# Color scheme colorscheme github face global Default rgb:121213,default face global BufferPadding rgb:A0A0A0,default face global MenuForeground blue,white+bF face global MenuBackground bright-blue,white+F face global Information bright-blue,white # Markdown help color scheme face global InfoDefault Information face global InfoBlock @block face global InfoBlockQuote +i@block face global InfoBullet @bullet face global InfoHeader @header face global InfoLink @link face global InfoLinkMono +b@mono face global InfoMono @mono face global InfoRule +b@Information face global InfoDiagnosticError @DiagnosticError face global InfoDiagnosticHint @DiagnosticHint face global InfoDiagnosticInformation @Information face global InfoDiagnosticWarning @DiagnosticWarning # Extra faces face global macro +b@function face global method +i@function face global format_specifier +i@string face global mutable_variable +u@variable face global class +b@variable # Enable line numbers addhl global/ number-lines set global grepcmd "rg --line-number --no-column --no-heading --color=never ''" # Floating terminal # define-command floating-terminal -params 1 -docstring "Open a floating terminal running the given command" %{ # evaluate-commands -save-regs 'a' %{ # set-register a %arg{@} # evaluate-commands %sh{ # alacritty \ # --class=alacritty,floating \ # -o window.dimensions.lines=24 \ # -o window.dimensions.columns=120 \ # -e sh -c "$kak_quoted_reg_a" < /dev/null > /dev/null 2>&1 & # } # } # } # map global user t -docstring "Open a side terminal on the current directory" ' :iterm-terminal-horizontal fish' # Comment line and block map global normal <#> ': comment-line' map global normal ': comment-block' # Go to grep-jump map global goto f -docstring "current grep-jump match" ': grep-jump' # System clipboard interactions hook global RegisterModified '"' %{ nop %sh{ printf "%s" "$kak_main_reg_dquote" | pbcopy >/dev/null 2>/dev/null & }} map global user P -docstring "Paste before cursor from clipboard" '! pbpaste' map global user p -docstring "Paste after cursor from clipboard" ' pbpaste' map global user R -docstring "Replace selection with text from clipboard" '! pbpaste' define-command -params 0 -docstring "Copy line down" copyline %{ execute-keys -draft 'xy'%val{count}'P' } map global normal <+> -docstring "Copy line down" ': copyline' define-command -params 0 -docstring "Delete current pair of brackets" delete-current-brackets %{ execute-keys 'm' execute-keys -draft 'd' execute-keys 'H' } map global normal D ": delete-current-brackets" # Disable write-to # unalias global w # define-command -params 0 -docstring "Writes the current file" w "write" # Tab sizes hook global InsertChar \t %{ exec -draft -itersel h@ } set global tabstop 4 set global indentwidth 4 hook global WinSetOption filetype=(c|cpp|haskell|nix|yaml) %{ set global tabstop 2 set global indentwidth 2 } # Ctrl + a in insert mode = esc map global insert '' # Tab completion hook global InsertCompletionShow .* %{ try %{ # this command temporarily removes cursors preceded by whitespace; # if there are no cursors left, it raises an error, does not # continue to execute the mapping commands, and the error is eaten # by the `try` command so no warning appears. execute-keys -draft 'h\h' map window insert map window insert } } hook global InsertCompletionHide .* %{ unmap window insert unmap window insert } # Enable LSP try %{ eval %sh{test -z "$WE_STARTED_KAK" && kak-lsp --kakoune -s $kak_session} } hook global WinSetOption filetype=(racket|rust|python|go|javascript|typescript|c|cpp|tex|latex|fsharp|ocaml|haskell|nix) %{ lsp-enable-window map global normal ": enter-user-mode lsp" lsp-auto-hover-enable # lsp-auto-hover-insert-mode-enable set window lsp_hover_anchor true } hook global WinSetOption filetype=(racket|rust|python|go|javascript|typescript|c|cpp|tex|latex|haskell|nix) %{ # Format the document if possible hook window BufWritePre .* %{ lsp-formatting-sync } } hook global WinSetOption filetype=(rust) %{ # Enable inlay hints lsp-inlay-hints-enable window } hook global WinSetOption filetype=(rust|go|fsharp) %{ 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 } } # in Insert mode moves to end of line. map global insert 'A' hook global WinSetOption filetype=(fsharp) %{ set-option window comment_line "//" # Set up formatting set-option window formatcmd "~/.dotnet/tools/fantomas --stdin --stdout" hook window -group fsharp-format BufWritePre .* %{ format } } hook global WinSetOption filetype=(ocaml) %{ unset-option buffer comment_line set-option buffer comment_block_begin "(*" set-option buffer comment_block_end "*)" } hook global WinSetOption filetype=(haskell) %{ set-option buffer makecmd "cabal build" } hook global WinSetOption filetype=(rust) %{ set-option buffer makecmd "cargo check" } def -hidden insert-c-n %{ try %{ lsp-snippets-select-next-placeholders exec 'd' } catch %{ exec -with-hooks '' } } map global insert ": insert-c-n" # Use C++ for .h headers hook global BufCreate .*[.](h) %{ set-option buffer filetype cpp } hook global BufCreate .*[.]kakrc %{ set-option buffer filetype kak } hook global BufCreate .*[.]md %{ add-highlighter buffer/ wrap } hook global BufOpenFile .* %{ modeline-parse } map global normal ':inc-dec-modify-numbers + %val{count}' map global normal ':inc-dec-modify-numbers - %val{count}' # Discord integration discord-presence-enable