build: cleanup

This commit is contained in:
Folke Lemaitre 2022-09-11 14:23:20 +02:00
parent c64ef42057
commit 05a8fce2af
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
3 changed files with 6 additions and 1 deletions

4
.gitignore vendored
View File

@ -1,4 +1,6 @@
doc/tags
.nlsp-settings
.vscode
.vscode
tt.lua

2
.ignore Normal file
View File

@ -0,0 +1,2 @@
types
schemas

View File

@ -60,6 +60,7 @@ function M.setup(options)
local function nlsp_key(file)
return "nlsp." .. vim.fn.fnamemodify(file, ":t:r")
end
table.insert(M.local_patterns, { pattern = ".nlsp-settings/*.json", key = nlsp_key })
table.insert(M.global_patterns, { pattern = "nlsp-settings/*.json", key = nlsp_key })
end