Commit graph

1430 commits

Author SHA1 Message Date
cswimr
92a97c5e41 plugins/schemastore: set the correct jsonls default
the JSON language server has the following [configuration structure](6fef251f8f/extensions/json-language-features/server/src/jsonServer.ts (L167-L179)):
```ts
    // The settings interface describes the server relevant settings part
    interface Settings {
        json?: {
            schemas?: JSONSchemaSettings[];
            format?: { enable?: boolean };
            validate?: { enable?: boolean };
            resultLimit?: number;
        };
        http?: {
            proxy?: string;
            proxyStrictSSL?: boolean;
        };
    }
```
So, we should be mkDefault'ing `validate.enable` instead of `validate`, as `validate` is expected to be an `Object` containing `enable` as a boolean.

(cherry picked from commit a5147a36f9)
2025-02-24 17:05:28 +00:00
bitterlox
4f0d5e0d29 plugins/palette: fix minor typo; (#2696)
(cherry picked from commit f4b7fd46f6)
2024-12-17 14:59:49 +00:00
Austin Horstman
02505f24b5 plugins/otter: fix treesitter warning
(cherry picked from commit c7b109f5af)
2024-12-11 21:50:08 +00:00
Austin Horstman
d0d4c9c367
plugins/hmts: migrate to mkNeovimPlugin 2024-12-11 11:59:27 -06:00
Austin Horstman
ce62cafda3
plugins/hmts: remove with lib; 2024-12-11 11:59:27 -06:00
Austin Horstman
551fc90797
plugins/hmts: fix warning 2024-12-11 11:59:27 -06:00
Austin Horstman
4d8b9aa55f plugins/neotest: fix adapter warning
(cherry picked from commit 2206328137)
2024-12-11 17:34:22 +00:00
github-actions[bot]
6395b9c013
flake.lock: Update
Flake lock file updates:

• Updated input 'flake-parts':
    'github:hercules-ci/flake-parts/506278e768c2a08bec68eb62932193e341f55c90?narHash=sha256-hgmguH29K2fvs9szpq2r3pz2/8cJd2LPS%2Bb4tfNFCwE%3D' (2024-11-01)
  → 'github:hercules-ci/flake-parts/205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9?narHash=sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c%3D' (2024-12-04)
• Updated input 'git-hooks':
    'github:cachix/git-hooks.nix/3308484d1a443fc5bc92012435d79e80458fe43c?narHash=sha256-mnTbjpdqF0luOkou8ZFi2asa1N3AA2CchR/RqCNmsGE%3D' (2024-11-19)
  → 'github:cachix/git-hooks.nix/6f4e2a2112050951a314d2733a994fbab94864c6?narHash=sha256-SVQVsbafSM1dJ4fpgyBqLZ%2BLft%2BjcQuMtEL3lQWx2Sk%3D' (2024-12-04)
• Updated input 'home-manager':
    'github:nix-community/home-manager/62d536255879be574ebfe9b87c4ac194febf47c5?narHash=sha256-lYnT%2BEYE47f5yY3KS/Kd4pJ6CO9fhCqumkYYkQ3TK20%3D' (2024-12-01)
  → 'github:nix-community/home-manager/c7ffc9727d115e433fd884a62dc164b587ff651d?narHash=sha256-zjO6m5BqxXIyjrnUziAzk4%2BT4VleqjstNudSqWcpsHI%3D' (2024-12-07)
• Updated input 'nix-darwin':
    'github:lnl7/nix-darwin/c6b65d946097baf3915dd51373251de98199280d?narHash=sha256-Qs3YmoLYUJ8g4RkFj2rMrzrP91e4ShAioC9s%2BvG6ENM%3D' (2024-12-02)
  → 'github:lnl7/nix-darwin/a35b08d09efda83625bef267eb24347b446c80b8?narHash=sha256-sQJAxY1TYWD1UyibN/FnN97paTFuwBw3Vp3DNCyKsMk%3D' (2024-12-07)
• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/f9f0d5c5380be0a599b1fb54641fa99af8281539?narHash=sha256-En%2BgSoVJ3iQKPDU1FHrR6zIxSLXKjzKY%2Bpnh9tt%2BYts%3D' (2024-12-02)
  → 'github:NixOS/nixpkgs/4dc2fc4e62dbf62b84132fe526356fbac7b03541?narHash=sha256-FillH0qdWDt/nlO6ED7h4cmN%2BG9uXwGjwmCnHs0QVYM%3D' (2024-12-05)
• Updated input 'nuschtosSearch':
    'github:NuschtOS/search/16307548b7a1247291c84ae6a12c0aacb07dfba2?narHash=sha256-BC1CecAQISV5Q4LZK72Gx0%2BfaemOwaChiD9rMVfDPoA%3D' (2024-11-30)
  → 'github:NuschtOS/search/68e9fad70d95d08156cf10a030bd39487bed8ffe?narHash=sha256-315rJ7O9cOllPDaFscnJhcMleORHbxon0Kq9LAKJ5p4%3D' (2024-12-05)
• Updated input 'treefmt-nix':
    'github:numtide/treefmt-nix/6209c381904cab55796c5d7350e89681d3b2a8ef?narHash=sha256-2qbdorpq0TXHBWbVXaTqKoikN4bqAtAplTwGuII%2BoAc%3D' (2024-11-29)
  → 'github:numtide/treefmt-nix/50862ba6a8a0255b87377b9d2d4565e96f29b410?narHash=sha256-qKL3vjO%2BIXFQ0nTinFDqNq/sbbnnS5bMI1y0xX215fU%3D' (2024-12-05)
2024-12-08 05:56:53 +00:00
Gaetan Lepage
667b2a5f7a treewide: format with latest nixfmt 2024-12-03 11:23:01 +01:00
Gaetan Lepage
8ca97758af Revert "plugins/efmls-configs: add new formatter kdlfmt to unpackaged"
This reverts commit cb0e3a7e40.
2024-12-03 11:15:56 +01:00
Gaetan Lepage
cb0e3a7e40 plugins/efmls-configs: add new formatter kdlfmt to unpackaged 2024-11-30 17:37:42 +01:00
Marcel
05331006a4
plugins/vim-suda: init 2024-11-29 01:08:16 +01:00
Sammy Etur
fc9178d124
plugins/image.nvim: ueberzugPackage default to ueberzugppv
ueberzug is not maintained anymore.

ueberzugpp is a active fork
2024-11-27 17:56:13 +01:00
Matt Sturgeon
8b19d15482
plugins/lsp: fix enabledServers.extraOptions type merging
Use `attrsOf` instead of `attrs` to ensure recursive merging, otherwise
things like `extraOptions.settings = lib.mkIf` will not be unwrapped by
the module system.
2024-11-26 13:57:40 +00:00
347Online | Katie Janzen
a1c352affc plugins/vim-be-good: init
Integrate the vim-be-good plugin
2024-11-25 17:49:55 -06:00
Wael M. Nasreddine
a81a03a3f5 plugins/vim-colemak: init 2024-11-24 19:57:29 +00:00
Gaetan Lepage
2f71c4250b tests/avante: remove deprecated model option local 2024-11-20 23:51:39 +01:00
Matt Sturgeon
7b94afceaf
plugins: cleanup most extraConfig args
- Remove `cfg` where it is unused.
- Use `opts` where necessary.
2024-11-20 20:55:16 +00:00
Matt Sturgeon
63cfc84abe
lib/modules: add applyExtraConfig
Used for
- mkVimPlugin: extraConfig
- mkNeovimPlugin: extraConfig
- mkLsp: extraConfig
- mkLsp: settings
- mkExtension (telecsope): extraConfig
2024-11-20 20:55:16 +00:00
Matt Sturgeon
929bb0cd1c
plugins/telescope: refactor mkExtension
Allow importing `mkExtension` without needing to supply any
dependencies.

All dependencies can be accessed via module args anyway.
2024-11-19 17:01:19 +00:00
traxys
c674f10d18 plugins/lsp: Correctly mark servers as disabled if the lsp plugin is disabled 2024-11-19 12:07:42 +01:00
traxys
31eb9d8d75 plugins/lsp: Fix extra config of lsp servers 2024-11-19 12:07:42 +01:00
Gaetan Lepage
1ee4915f65 plugins/lsp: update lsp-packages.nix 2024-11-18 09:07:32 +00:00
bpatel347
5bc3fa6996 plugins/quarto: init
Use neovim-plugin.mkNeovimPlugin and move quarto-nvim to quarto

Rename tests to match convention

Passing tests locally, add required dependencies

Utilize `let` - `in` block

Remove extraPlugins

plugins/quarto: init

plugin/quarto: init

plugins/quarto: init

plugins/quarto: init
2024-11-17 22:51:48 +00:00
Anthony Cicchetti
9d99d7cfdb plugins/lsp: remove buf-language-server 2024-11-16 13:13:02 -05:00
Matt Sturgeon
c8267ba395
plugins/tmux-navigator: re-word usage instructions 2024-11-16 17:01:43 +00:00
Matt Sturgeon
a52572c060
plugins/tmux-navigator: use markdown admonition 2024-11-16 17:01:42 +00:00
bpatel347
7b0df222fc
plugins/kulala: init 2024-11-16 16:43:44 +00:00
Matt Sturgeon
de99f2938f
lib/{vim,neovim}-plugin: installPackage -> packageDecorator
Replace `mkNeovimPlugin`'s `installPackage` parameter with a new
internal module option: `packageDecorator`.

The option is a function that applies some transformation to
`cfg.package`'s value before it is installed.
2024-11-15 21:44:59 +00:00
Heitor Augusto
46e574d4ea plugins/snacks: init 2024-11-15 12:55:03 +00:00
bpatel347
54f567166d plugins/vim-dadbod-completion: init
plguins/vim-dadbod-completion: Add cmpSource
2024-11-15 09:05:53 +00:00
bpatel347
5dfc9526ef plugins/vim-dadbod-ui: init 2024-11-15 09:05:53 +00:00
bpatel347
d408ffd6b4 plugins/vim-dadbod: init 2024-11-15 09:05:53 +00:00
bpatel347
f2259372fb plugins/neoconf: init
Update maintainers, remove unused pkgs

plugins/neoconf: init

plugins/neoconf: init
2024-11-15 07:27:48 +00:00
Gaetan Lepage
ccae4350d0 options: add defaultNullOpts.mkRaw 2024-11-13 23:38:31 +01:00
Pyxels
e552c984a2 plugins/nonels/prettier: use priority instead of null for prettier disableTsFormatting 2024-11-13 13:25:10 +00:00
Pyxels
d593b82436 plugins/nonels/prettierd: add disableTsServerFormatting option to prettierd
Add a new option (and warning) to disable the typescript-language-server (ts_ls) formatting the same as for prettier.
2024-11-13 13:25:10 +00:00
Sandro Jäckel
4ea34656c2
plugins/lsp: enable angularls 2024-11-11 17:42:16 +01:00
Gaetan Lepage
de2a7944d0 plugins/muren: init 2024-11-11 10:24:03 +00:00
Gaetan Lepage
57068f532d plugins/helm: add recommended autocmd for proper LSP behavior 2024-11-11 00:39:56 +01:00
bpatel347
93ffac6346 Add global python3Dependencies 2024-11-08 15:40:32 -05:00
bpatel347
c0742ca466 Add jupytext python3Dependency to jupytext plugin 2024-11-08 07:58:58 -05:00
Katherine Jamison
aabbd60633
plugins/lsp: enable auto-installing rustfmt 2024-11-07 13:03:42 -07:00
Gaetan Lepage
b0ebcaa177 plugins/helm: switch to mkVimPlugin 2024-11-07 12:26:10 +00:00
Balssh
77b495801c plugins/blink-cmp: update configuration 2024-11-07 11:21:23 +00:00
Gaetan Lepage
3d24cb7261 plugins/fastaction: init 2024-11-05 07:37:44 +00:00
amalgame21
aa06b176e7 plugins/luasnip: fix example 2024-11-04 14:46:57 +00:00
Gaetan Lepage
f98e11b5c3 tests/efmls-configs: sql-formatter has been moved to top-level 2024-11-03 16:04:19 +01:00
Gaetan Lepage
356896f58d plugins/scrollview: init 2024-11-01 22:17:57 +00:00
Gaetan Lepage
42ea1626cb plugins/lsp: update unpackaged lsp list 2024-10-31 10:51:38 +01:00