fix: resolve stylua checks

This commit is contained in:
Micah Effiong 2024-01-26 02:21:41 +01:00
parent 27d1b03064
commit ec6e5ca802
1 changed files with 3 additions and 3 deletions

View File

@ -510,7 +510,7 @@ local on_attach = function(_, bufnr)
nmap('<leader>rn', vim.lsp.buf.rename, '[R]e[n]ame')
nmap('<leader>ca', function()
vim.lsp.buf.code_action({ context = { only = { 'quickfix', 'refactor', 'source' } } })
vim.lsp.buf.code_action { context = { only = { 'quickfix', 'refactor', 'source' } } }
end, '[C]ode [A]ction')
nmap('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition')