diff --git a/.config/fish/functions/kakcon.fish b/.config/fish/functions/kakcon.fish new file mode 100644 index 00000000..68198a17 --- /dev/null +++ b/.config/fish/functions/kakcon.fish @@ -0,0 +1,3 @@ +function kakcon --description 'select kakoune session to join' + kak -c (kak -l | fzf) +end diff --git a/.config/kak/autoload/lsp.kak b/.config/kak/autoload/lsp.kak index 542be8e3..72fe94eb 100644 --- a/.config/kak/autoload/lsp.kak +++ b/.config/kak/autoload/lsp.kak @@ -15,7 +15,8 @@ map global object d 'lsp-diagnostic-object --include-warnings' map global object D 'lsp-diagnostic-object' -docstring 'LSP errors' # set-option global lsp_auto_highlight_references false - +set-option global lsp_auto_show_code_actions true +set-option global lsp_code_action_indicator '' # Server Config set-option global lsp_debug false lsp-inlay-hints-enable global diff --git a/.config/kak/kakrc b/.config/kak/kakrc index 5a5249f3..52dce01f 100644 --- a/.config/kak/kakrc +++ b/.config/kak/kakrc @@ -105,6 +105,10 @@ define-command -docstring "Create a scratch buffer" scratch %{ edit -scratch } alias global s scratch +define-command -docstring "New terminal in cwd" cwd-terminal %{ + terminal fish +} +alias global t cwd-terminal require-module peneira