chore(nvim): add keymap to format text

Add a keymap within the LSP client to format the text rather than
automatically formatting it on save.
This commit is contained in:
Oliver Davies 2022-09-01 18:50:50 +01:00
parent 14b6d80507
commit cf0a317b23

View file

@ -39,6 +39,7 @@ local custom_attach = function(client)
buf_nnoremap { "<leader>ca", vim.lsp.buf.code_action }
buf_nnoremap { "<leader>dn", vim.diagnostic.goto_next }
buf_nnoremap { "<leader>dp", vim.diagnostic.goto_prev }
buf_nnoremap { "<leader>f", vim.lsp.buf.format }
buf_nnoremap { "<leader>rn", vim.lsp.buf.rename }
buf_nnoremap { "<leader>rr", "<cmd>LspRestart<cr>" }
buf_nnoremap { "K", vim.lsp.buf.hover }