feat: keybind to toggle format on save

This commit is contained in:
Ching Pei Yang 2023-10-14 15:01:34 +02:00
parent d1b497e3e5
commit d43afa4316
2 changed files with 8 additions and 0 deletions

View file

@ -41,6 +41,7 @@ in {
${mkBinding mappings.renameSymbol "vim.lsp.buf.rename()"}
${mkBinding mappings.codeAction "vim.lsp.buf.code_action()"}
${mkBinding mappings.format "vim.lsp.buf.format()"}
${mkBinding mappings.toggleFormatOnSave "vim.b.disableFormatSave = not vim.b.disableFormatSave"}
end
-- Enable formatting
@ -56,6 +57,10 @@ in {
${
if config.vim.lsp.null-ls.enable
then ''
if vim.b.disableFormatSave then
return
end
local function is_null_ls_formatting_enabled(bufnr)
local file_type = vim.api.nvim_buf_get_option(bufnr, "filetype")
local generators = require("null-ls.generators").get_available(

View file

@ -63,6 +63,9 @@ in {
format =
mkMappingOption "Format"
"<leader>lf";
toggleFormatOnSave =
mkMappingOption "Toggle format on save"
"<leader>ltf";
};
};
}