1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 09:34:04 +00:00

misc: update .gitattributes and .nvim.lua

Add export-ignore for CLAUDE.md and static_properties.nu
Update nvim syntax for disabling the TailwindCSS LSP
This commit is contained in:
Samuel Štancl 2025-09-01 21:09:47 +02:00
parent e6cc6d6777
commit 211be22735
2 changed files with 4 additions and 3 deletions

2
.gitattributes vendored
View file

@ -10,6 +10,7 @@
/.nvim.lua export-ignore /.nvim.lua export-ignore
/art export-ignore /art export-ignore
/coverage export-ignore /coverage export-ignore
/CLAUDE.md export-ignore
/CONTRIBUTING.md export-ignore /CONTRIBUTING.md export-ignore
/INTERNAL.md export-ignore /INTERNAL.md export-ignore
/SUPPORT.md export-ignore /SUPPORT.md export-ignore
@ -19,6 +20,7 @@
/Dockerfile export-ignore /Dockerfile export-ignore
/doctum export-ignore /doctum export-ignore
/phpunit.xml export-ignore /phpunit.xml export-ignore
/static_properties.nu export-ignore
/t export-ignore /t export-ignore
/test export-ignore /test export-ignore
/tests export-ignore /tests export-ignore

View file

@ -1,4 +1,3 @@
-- The tailwindcss LSP doesn't play nice with testbench due to the recursive -- The tailwindcss LSP doesn't play nice with testbench due to the recursive
-- `vendor` symlink in `testbench-core/laravel/vendor`, so we nuke its setup method here. -- `vendor` symlink in `testbench-core/laravel/vendor`, so we disable it here.
-- This prevents the setup() call in neovim config from starting the client (or doing anything at all). vim.lsp.enable('tailwindcss', false)
require('lspconfig').tailwindcss.setup = function () end