diff --git a/.config/kak/autoload/format.kak b/.config/kak/autoload/format.kak index 009c4c20..7caa9b21 100644 --- a/.config/kak/autoload/format.kak +++ b/.config/kak/autoload/format.kak @@ -4,7 +4,7 @@ declare-option -docstring "whether the LSP should be preferred for formatting" b define-command format-buffer -docstring "Format the contents of the buffer" %{ evaluate-commands %sh{ - if [ "$kak_opt_lsp_fmt" == "false" ]; then + if [ "$kak_opt_lsp_fmt" = "false" ]; then echo "format-buffer-pipe" else echo "lsp-formatting" @@ -14,7 +14,7 @@ define-command format-buffer -docstring "Format the contents of the buffer" %{ define-command format-selections -docstring "Format the selections individually" %{ evaluate-commands %sh{ - if [ "${kak_opt_lsp_fmt}" == "false" ]; then + if [ "${kak_opt_lsp_fmt}" = "false" ]; then echo "format-selections-pipe" else echo "lsp-range-formatting" diff --git a/.config/kak/autoload/plugins.kak b/.config/kak/autoload/plugins.kak index 884ca9c7..f27d77ee 100644 --- a/.config/kak/autoload/plugins.kak +++ b/.config/kak/autoload/plugins.kak @@ -110,6 +110,6 @@ bundle pykak https://github.com/tomKPZ/pykak # } # } -bundle kak-ansi https://github.com/eraserhd/kak-ansi +# bundle kak-ansi https://github.com/eraserhd/kak-ansi bundle-theme one.kak https://github.com/raiguard/one.kak