Add :Format command to vim

This commit is contained in:
Talia 2023-05-23 13:28:12 +02:00
parent 5af03fe3f6
commit 6e9f23e8b9
1 changed files with 2 additions and 0 deletions

View File

@ -24,4 +24,6 @@ return function(_, bufnr)
vim.keymap.set('n', '<leader>ca', vim.lsp.buf.code_action, bufopts)
vim.keymap.set('n', 'gr', vim.lsp.buf.references, bufopts)
--vim.keymap.set('n', '<leader>f', vim.lsp.buf.formatting, bufopts)
vim.api.nvim_buf_create_user_command(bufnr, "Format", vim.lsp.buf.format, {})
end