mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-05-19 05:24:22 +00:00
Merge pull request #1590 from snoweuph/feat/emmet-all
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Treewide Checks / Validate flake (push) Waiting to run
Treewide Checks / Check formatting (push) Waiting to run
Treewide Checks / Check source tree for typos (push) Waiting to run
Treewide Checks / Validate documentation builds (push) Waiting to run
Treewide Checks / Validate documentation builds-1 (push) Waiting to run
Treewide Checks / Validate documentation builds-2 (push) Waiting to run
Treewide Checks / Validate documentation builds-3 (push) Waiting to run
Treewide Checks / Validate hyperlinks in documentation sources (push) Waiting to run
Treewide Checks / Validate Editorconfig conformance (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Treewide Checks / Validate flake (push) Waiting to run
Treewide Checks / Check formatting (push) Waiting to run
Treewide Checks / Check source tree for typos (push) Waiting to run
Treewide Checks / Validate documentation builds (push) Waiting to run
Treewide Checks / Validate documentation builds-1 (push) Waiting to run
Treewide Checks / Validate documentation builds-2 (push) Waiting to run
Treewide Checks / Validate documentation builds-3 (push) Waiting to run
Treewide Checks / Validate hyperlinks in documentation sources (push) Waiting to run
Treewide Checks / Validate Editorconfig conformance (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
languages: add emmet-ls to supported languages
This commit is contained in:
commit
1a482a2437
6 changed files with 7 additions and 5 deletions
|
|
@ -291,6 +291,8 @@
|
|||
|
||||
[Snoweuph](https://github.com/snoweuph)
|
||||
|
||||
- Add `emmet-ls` to the supported LSPs for all languages it supports.
|
||||
|
||||
- Added {option}`vim.treesitter.queries` to support adding custom queries.
|
||||
|
||||
- Added injections for `query = '' ... ''` as `query` and `mkLualine '' ... ''`,
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
cfg = config.vim.languages.css;
|
||||
|
||||
defaultServer = ["vscode-css-language-server"];
|
||||
servers = ["vscode-css-language-server"];
|
||||
servers = ["vscode-css-language-server" "emmet-ls"];
|
||||
|
||||
defaultFormat = ["prettier"];
|
||||
formats = {
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
cfg = config.vim.languages.scss;
|
||||
|
||||
defaultServer = ["some-sass-language-server"];
|
||||
servers = ["some-sass-language-server" "vscode-css-language-server"];
|
||||
servers = ["some-sass-language-server" "vscode-css-language-server" "emmet-ls"];
|
||||
|
||||
defaultFormat = ["prettier"];
|
||||
formats = {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
cfg = config.vim.languages.svelte;
|
||||
|
||||
defaultServers = ["svelte-language-server"];
|
||||
servers = ["svelte-language-server"];
|
||||
servers = ["svelte-language-server" "emmet-ls"];
|
||||
|
||||
defaultFormat = ["prettier"];
|
||||
formats = let
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
cfg = config.vim.languages.typescript;
|
||||
|
||||
defaultServers = ["typescript-language-server"];
|
||||
servers = ["typescript-language-server" "deno" "typescript-go" "angular-language-server"];
|
||||
servers = ["typescript-language-server" "deno" "typescript-go" "angular-language-server" "emmet-ls"];
|
||||
|
||||
# TODO: specify packages
|
||||
defaultFormat = ["prettier"];
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
cfg = config.vim.languages.vue;
|
||||
|
||||
defaultServers = ["vue-language-server" "vtsls"];
|
||||
servers = ["vue-language-server" "vtsls" "typescript-language-server"];
|
||||
servers = ["vue-language-server" "vtsls" "typescript-language-server" "emmet-ls"];
|
||||
|
||||
defaultFormat = ["biome" "biome-check" "biome-organize-imports"];
|
||||
formats = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue