diff --git a/packages/common/nki-kakoune/kakrc b/packages/common/nki-kakoune/kakrc index af7f4f1..a444ae6 100644 --- a/packages/common/nki-kakoune/kakrc +++ b/packages/common/nki-kakoune/kakrc @@ -112,11 +112,6 @@ hook global WinSetOption filetype=(rust) %{ set-option buffer makecmd "cargo check" } -hook global WinSetOption filetype=(scala) %{ - # Format the document if possible - hook -group scala-fmt window BufWritePre .* %{ lsp-formatting-sync } -} - hook global WinSetOption filetype=(typst) %{ set-option window comment_line "//" set-option window comment_block_begin "/*" diff --git a/packages/common/nki-kakoune/lsp.nix b/packages/common/nki-kakoune/lsp.nix index 53c28e0..e6c9f85 100644 --- a/packages/common/nki-kakoune/lsp.nix +++ b/packages/common/nki-kakoune/lsp.nix @@ -297,7 +297,7 @@ in map global object d 'lsp-diagnostic-object --include-warnings' -docstring 'LSP errors and warnings' map global object D 'lsp-diagnostic-object' -docstring 'LSP errors' - hook global WinSetOption filetype=(racket|rust|python|go|javascript|typescript|c|cpp|tex|latex|haskell|nix|fsharp|templ) %{ + hook global WinSetOption filetype=(racket|rust|python|go|javascript|typescript|c|cpp|tex|latex|haskell|nix|fsharp|templ|scala) %{ # Format the document if possible hook window -group lsp-formatting BufWritePre .* %{ lsp-formatting-sync } }