AutoYADM commit: 2025-05-21 17:00:39

This commit is contained in:
Daniel Fichtinger 2025-05-21 17:00:39 -04:00
parent 050b548393
commit bdd34c0a6b
3 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,3 @@
function kakcon --description 'select kakoune session to join'
kak -c (kak -l | fzf)
end

View file

@ -15,7 +15,8 @@ map global object d '<a-semicolon>lsp-diagnostic-object --include-warnings<ret>'
map global object D '<a-semicolon>lsp-diagnostic-object<ret>' -docstring 'LSP errors' map global object D '<a-semicolon>lsp-diagnostic-object<ret>' -docstring 'LSP errors'
# set-option global lsp_auto_highlight_references false # 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 # Server Config
set-option global lsp_debug false set-option global lsp_debug false
lsp-inlay-hints-enable global lsp-inlay-hints-enable global

View file

@ -105,6 +105,10 @@ define-command -docstring "Create a scratch buffer" scratch %{
edit -scratch edit -scratch
} }
alias global s scratch alias global s scratch
define-command -docstring "New terminal in cwd" cwd-terminal %{
terminal fish
}
alias global t cwd-terminal
require-module peneira require-module peneira