Guess this works

This commit is contained in:
Jonathon Chambers 2025-05-18 10:50:25 -04:00
parent 0079504a48
commit fd44486cc7
5 changed files with 65 additions and 5 deletions

View file

@ -0,0 +1,15 @@
return {
'MaximilianLloyd/tw-values.nvim',
keys = {
{ '<leader>sv', '<cmd>TWValues<cr>', desc = 'Show tailwind CSS values' },
},
opts = {
border = 'rounded', -- Valid window border style,
show_unknown_classes = true, -- Shows the unknown classes popup
focus_preview = true, -- Sets the preview as the current window
copy_register = '', -- The register to copy values to,
keymaps = {
copy = '<C-y>', -- Normal mode keymap to copy the CSS values between {}
},
},
}