mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 03:30:36 +00:00
The `tailwindcss-colors.lua` file was added to the `absolute/after` directory. This file imports the `tailwindcss-colors` module and sets it up. The `tailwindcss-colors.lua` file was also added to the `absolute/plugins` directory. This file returns a table with the plugin configuration, including a `config` function that requires the `absolute.after.tailwindcss-colors` module. These changes were made to add support for the `tailwindcss-colors` plugin in the Absolute Neovim configuration.
7 lines
127 B
Lua
7 lines
127 B
Lua
return {
|
|
"themaxmarchuk/tailwindcss-colors.nvim",
|
|
config = function()
|
|
require("absolute.after.tailwindcss-colors")
|
|
end,
|
|
}
|