๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

allow tailwind to work with lustre

Kacaii 36cb3daf 168335eb

+16 -4
-4
nvim/lua/config/autocmds.lua
··· 1 - -- Autocmds are automatically loaded on the VeryLazy event 2 - -- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua 3 - -- Add any additional autocmds here 4 - 5 1 vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, { command = "set nospell" })
+16
nvim/lua/plugins/lsp_config.lua
··· 4 4 servers = { 5 5 sqlfluff = { filetypes = { "sql" } }, 6 6 just = { filetypes = { "just", "justfile" }, cmd = { "just-lsp" } }, 7 + 8 + tailwindcss = { 9 + filetypes_include = { "gleam" }, 10 + settings = { 11 + tailwindCSS = { 12 + includeLanguages = { gleam = "javascript" }, 13 + experimental = { 14 + classRegex = { 15 + 'class\\(\\s*[\\r\\n]?\\s*"([^"]*)",?\\s*[\\r\\n]?\\s*\\)', 16 + "class\\(\\s*['\"]([^'\"]*)['\"]\\s*\\)", 17 + "#?\\(\\s*['\"]([^'\"]*)['\"]\\s*,\\s*[^\\)]*\\)", 18 + }, 19 + }, 20 + }, 21 + }, 22 + }, 7 23 }, 8 24 }, 9 25 }