From bdd34c0a6b4ca3d6dce7ad70b322435c34d1ace4 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Wed, 21 May 2025 17:00:39 -0400 Subject: [PATCH] AutoYADM commit: 2025-05-21 17:00:39 --- .config/fish/functions/kakcon.fish | 3 +++ .config/kak/autoload/lsp.kak | 3 ++- .config/kak/kakrc | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .config/fish/functions/kakcon.fish 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