cfConfig Portal

editor/nvim · lua/craftzdog/lsp.lua

Imported from ~/.config/nvim.

lsp.lua
local M = {}
local LazyvimUtil = require("lazyvim.util")

function M.toggleInlayHints()
	vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())
end

function M.toggleAutoformat()
	LazyvimUtil.format.toggle()
end

return M