Make zshTodo not special & cleanup lua syntax
This commit is contained in:
@@ -134,10 +134,10 @@ return {
|
||||
title = 'Hover',
|
||||
}
|
||||
)
|
||||
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
|
||||
vim.lsp.handlers['textDocument/signatureHelp'] = vim.lsp.with(
|
||||
vim.lsp.handlers.signature_help, {
|
||||
border = 'rounded',
|
||||
title = 'Signature Help'
|
||||
title = 'Signature Help',
|
||||
}
|
||||
)
|
||||
|
||||
@@ -166,7 +166,7 @@ return {
|
||||
|
||||
-- Fixit mapping, or close enough, actually any code action
|
||||
vim.keymap.set('n', '<leader>fi',
|
||||
require("actions-preview").code_actions, opts)
|
||||
require('actions-preview').code_actions, opts)
|
||||
|
||||
-- Goto mappings
|
||||
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, opts)
|
||||
|
||||
Reference in New Issue
Block a user