Skip to content

Commit

Permalink
Merge branch 'main' into feature/callback_live_reload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajaymamtora authored Sep 24, 2024
2 parents 960f952 + c551605 commit 868c645
Show file tree
Hide file tree
Showing 20 changed files with 2,797 additions and 210 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.3.3](https://github.com/folke/neoconf.nvim/compare/v1.3.2...v1.3.3) (2024-09-16)


### Bug Fixes

* **basedpyright:** add basedpyright schema ([#90](https://github.com/folke/neoconf.nvim/issues/90)) ([557f3e7](https://github.com/folke/neoconf.nvim/commit/557f3e753550ea6856ba812a4c517fd5751dadf0))
* **schemas:** `tsserver` renamed to `ts_ls` ([#89](https://github.com/folke/neoconf.nvim/issues/89)) ([559836d](https://github.com/folke/neoconf.nvim/commit/559836d2b66bcf1e9e6a048ac81ad13b5061842a))

## [1.3.2](https://github.com/folke/neoconf.nvim/compare/v1.3.1...v1.3.2) (2024-07-18)


Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ You can additionally use the exported types in other places.
clangd = {},
cssls = {},
dockerls = {},
tsserver = {},
ts_ls = {},
svelte = {},
eslint = {},
html = {},
Expand Down Expand Up @@ -221,6 +221,7 @@ local my_settings = Neoconf.get("neodev", defaults)
- [x] [als](https://github.com/AdaCore/ada_language_server/tree/master/integration/vscode/ada/package.json)
- [x] [astro](https://github.com/withastro/language-tools/tree/main/packages/vscode/package.json)
- [x] [awkls](https://github.com/Beaglefoot/awk-language-server/tree/master/client/package.json)
- [x] [basedpyright](https://github.com/DetachHead/basedpyright/tree/main/packages/vscode-pyright/package.json)
- [x] [bashls](https://github.com/bash-lsp/bash-language-server/tree/master/vscode-client/package.json)
- [x] [clangd](https://github.com/clangd/vscode-clangd/tree/master/package.json)
- [x] [cssls](https://github.com/microsoft/vscode/tree/main/extensions/css-language-features/package.json)
Expand Down Expand Up @@ -271,7 +272,7 @@ local my_settings = Neoconf.get("neodev", defaults)
- [x] [svlangserver](https://github.com/eirikpre/VSCode-SystemVerilog/tree/master/package.json)
- [x] [tailwindcss](https://github.com/tailwindlabs/tailwindcss-intellisense/tree/master/packages/vscode-tailwindcss/package.json)
- [x] [terraformls](https://github.com/hashicorp/vscode-terraform/tree/master/package.json)
- [x] [tsserver](https://github.com/microsoft/vscode/tree/main/extensions/typescript-language-features/package.json)
- [x] [ts_ls](https://github.com/microsoft/vscode/tree/main/extensions/typescript-language-features/package.json)
- [x] [volar](https://github.com/vuejs/language-tools/tree/master/extensions/vscode/package.json)
- [x] [vtsls](https://github.com/yioneko/vtsls/tree/main/packages/service/configuration.schema.json)
- [x] [vuels](https://github.com/vuejs/vetur/tree/master/package.json)
Expand Down
7 changes: 4 additions & 3 deletions doc/neoconf.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*neoconf.nvim.txt* For Neovim Last change: 2024 July 22
*neoconf.nvim.txt* For Neovim Last change: 2024 September 16

==============================================================================
Table of Contents *neoconf.nvim-table-of-contents*
Expand Down Expand Up @@ -148,7 +148,7 @@ Example with a table containing LSP server settings ~
clangd = {},
cssls = {},
dockerls = {},
tsserver = {},
ts_ls = {},
svelte = {},
eslint = {},
html = {},
Expand Down Expand Up @@ -239,6 +239,7 @@ SUPPORTED LANGUAGE SERVERS*neoconf.nvim-neoconf.nvim-supported-language-servers*
- als <https://github.com/AdaCore/ada_language_server/tree/master/integration/vscode/ada/package.json>
- astro <https://github.com/withastro/language-tools/tree/main/packages/vscode/package.json>
- awkls <https://github.com/Beaglefoot/awk-language-server/tree/master/client/package.json>
- basedpyright <https://github.com/DetachHead/basedpyright/tree/main/packages/vscode-pyright/package.json>
- bashls <https://github.com/bash-lsp/bash-language-server/tree/master/vscode-client/package.json>
- clangd <https://github.com/clangd/vscode-clangd/tree/master/package.json>
- cssls <https://github.com/microsoft/vscode/tree/main/extensions/css-language-features/package.json>
Expand Down Expand Up @@ -289,7 +290,7 @@ SUPPORTED LANGUAGE SERVERS*neoconf.nvim-neoconf.nvim-supported-language-servers*
- svlangserver <https://github.com/eirikpre/VSCode-SystemVerilog/tree/master/package.json>
- tailwindcss <https://github.com/tailwindlabs/tailwindcss-intellisense/tree/master/packages/vscode-tailwindcss/package.json>
- terraformls <https://github.com/hashicorp/vscode-terraform/tree/master/package.json>
- tsserver <https://github.com/microsoft/vscode/tree/main/extensions/typescript-language-features/package.json>
- ts_ls <https://github.com/microsoft/vscode/tree/main/extensions/typescript-language-features/package.json>
- volar <https://github.com/vuejs/language-tools/tree/master/extensions/vscode/package.json>
- vtsls <https://github.com/yioneko/vtsls/tree/main/packages/service/configuration.schema.json>
- vuels <https://github.com/vuejs/vetur/tree/master/package.json>
Expand Down
5 changes: 3 additions & 2 deletions lua/neoconf/build/schemas.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ M.index = {
als = "https://raw.githubusercontent.com/AdaCore/ada_language_server/master/integration/vscode/ada/package.json",
astro = "https://raw.githubusercontent.com/withastro/language-tools/main/packages/vscode/package.json",
awkls = "https://raw.githubusercontent.com/Beaglefoot/awk-language-server/master/client/package.json",
basedpyright = "https://raw.githubusercontent.com/DetachHead/basedpyright/main/packages/vscode-pyright/package.json",
bashls = "https://raw.githubusercontent.com/bash-lsp/bash-language-server/master/vscode-client/package.json",
clangd = "https://raw.githubusercontent.com/clangd/vscode-clangd/master/package.json",
cssls = "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/css-language-features/package.json",
Expand Down Expand Up @@ -58,7 +59,7 @@ M.index = {
svlangserver = "https://raw.githubusercontent.com/eirikpre/VSCode-SystemVerilog/master/package.json",
tailwindcss = "https://raw.githubusercontent.com/tailwindlabs/tailwindcss-intellisense/master/packages/vscode-tailwindcss/package.json",
terraformls = "https://raw.githubusercontent.com/hashicorp/vscode-terraform/master/package.json",
tsserver = "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/typescript-language-features/package.json",
ts_ls = "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/typescript-language-features/package.json",
volar = "https://raw.githubusercontent.com/vuejs/language-tools/master/extensions/vscode/package.json",
vtsls = "https://raw.githubusercontent.com/yioneko/vtsls/main/packages/service/configuration.schema.json",
vuels = "https://raw.githubusercontent.com/vuejs/vetur/master/package.json",
Expand All @@ -81,7 +82,7 @@ M.overrides = {
jsonls = {
translate = true,
},
tsserver = {
ts_ls = {
translate = true,
},
ltex = {
Expand Down
Loading

0 comments on commit 868c645

Please sign in to comment.