mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-07-17 17:24:37 +02:00
16 lines
507 B
Lua
16 lines
507 B
Lua
|
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 {}
|
||
|
},
|
||
|
},
|
||
|
}
|