diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2024-03-31 19:36:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-31 13:36:43 -0400 |
commit | 1175f6d25a84146fda2eb16236d2a21ae30cc7b1 (patch) | |
tree | f04dc682ea7d7286f001f82e22af5847393da92e /init.lua | |
parent | 93fde0556e82ead2a5392ccb678359fa59437b98 (diff) |
Add a keymap space-f to format buffer using conform (#817)
This works also for visual range selection
Copied from conform recipe:
https://github.com/stevearc/conform.nvim/blob/master/doc/recipes.md
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -600,6 +600,16 @@ require('lazy').setup({ { -- Autoformat 'stevearc/conform.nvim', + keys = { + { + '<leader>f', + function() + require('conform').format { async = true, lsp_fallback = true } + end, + mode = '', + desc = '[F]ormat buffer', + }, + }, opts = { notify_on_error = false, format_on_save = function(bufnr) |