AutoYADM commit: 2025-05-19 16:09:53

This commit is contained in:
Daniel Fichtinger 2025-05-19 16:09:53 -04:00
parent 9972f5c608
commit c7aae67c13

View file

@ -14,10 +14,10 @@ map global object t '<a-semicolon>lsp-object Class Interface Struct<ret>' -docst
map global object d '<a-semicolon>lsp-diagnostic-object --include-warnings<ret>' -docstring 'LSP errors and warnings' map global object d '<a-semicolon>lsp-diagnostic-object --include-warnings<ret>' -docstring 'LSP errors and warnings'
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
# Server Config # Server Config
set-option global lsp_debug false set-option global lsp_debug true
lsp-inlay-hints-enable global lsp-inlay-hints-enable global
# TODO: set up toggle binding for this # TODO: set up toggle binding for this
# lsp-inlay-diagnostics-enable global # lsp-inlay-diagnostics-enable global
@ -35,3 +35,13 @@ hook -group lsp-filetype-python global BufSetOption filetype=python %{
} }
} }
# remove-hooks global lsp-filetype-fish
hook -group lsp-filetype-fish global BufSetOption filetype=fish %{
set-option buffer lsp_servers %{
[fish-lsp]
root_globs = [".git"]
args = ["start"]
command = "/home/fic/.config/kak/scripts/fish-lsp.fish"
}
}