feat: better tailwindcss support
This commit is contained in:
parent
2945b6cb28
commit
c2838b6fd7
4 changed files with 11 additions and 2 deletions
|
@ -178,6 +178,7 @@
|
|||
texpresso-vim
|
||||
blink-cmp
|
||||
clangd_extensions-nvim
|
||||
tailwind-tools-nvim
|
||||
];
|
||||
};
|
||||
|
||||
|
|
5
init.lua
5
init.lua
|
@ -75,4 +75,7 @@ vim.api.nvim_create_autocmd("TextYankPost", {
|
|||
end,
|
||||
})
|
||||
|
||||
-- vim.keymap.set("i", "<Tab>", require("scripts.intellitab").indent)
|
||||
-- silence the hover 'no information available' notification
|
||||
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, {
|
||||
silent = true,
|
||||
})
|
||||
|
|
|
@ -62,7 +62,6 @@ M.setup = function()
|
|||
offset_encoding = "utf-8",
|
||||
})
|
||||
lspconfig.svelte.setup({})
|
||||
lspconfig.tailwindcss.setup({})
|
||||
lspconfig.texlab.setup({})
|
||||
lspconfig.clangd.setup({})
|
||||
end
|
||||
|
|
|
@ -250,4 +250,10 @@ return {
|
|||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"tailwind-tools.nvim",
|
||||
after = function()
|
||||
require("tailwind-tools").setup({})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue