mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-20 03:30:20 +01:00
commit
d6a2a1a60a
141 changed files with 5017 additions and 3073 deletions
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
|
|
@ -1,11 +1,7 @@
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: github-actions
|
- package-ecosystem: github-actions
|
||||||
|
open-pull-requests-limit: 15
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
open-pull-requests-limit: 15
|
|
||||||
reviewers:
|
|
||||||
- NotAShelf
|
|
||||||
assignees:
|
|
||||||
- NotAShelf
|
|
||||||
|
|
|
||||||
3
.github/typos.toml
vendored
3
.github/typos.toml
vendored
|
|
@ -6,6 +6,9 @@ default.extend-ignore-words-re = [
|
||||||
"annote",
|
"annote",
|
||||||
"viw",
|
"viw",
|
||||||
"typ",
|
"typ",
|
||||||
|
"edn",
|
||||||
|
"esy",
|
||||||
"BA", # somehow "BANanaD3V" is valid, but BA is not...
|
"BA", # somehow "BANanaD3V" is valid, but BA is not...
|
||||||
|
"Emac"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
|
|
@ -109,7 +109,7 @@ jobs:
|
||||||
flake-docs-linkcheck:
|
flake-docs-linkcheck:
|
||||||
name: "Validate hyperlinks in documentation sources"
|
name: "Validate hyperlinks in documentation sources"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: "!contains(github.event.pull_request.title, '[skip ci]')"
|
if: false # disabled until we fix ndg docs
|
||||||
steps:
|
steps:
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: DeterminateSystems/nix-installer-action@main
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
|
|
||||||
91
.github/workflows/update.yml
vendored
Normal file
91
.github/workflows/update.yml
vendored
Normal file
|
|
@ -0,0 +1,91 @@
|
||||||
|
name: Weekly Dependency Updates
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
# 8 PM UTC every Friday
|
||||||
|
- cron: '0 20 * * 5'
|
||||||
|
jobs:
|
||||||
|
update-dependencies:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
|
- name: "Install Nix"
|
||||||
|
uses: cachix/install-nix-action@v31.8.2
|
||||||
|
|
||||||
|
- name: Set up Git
|
||||||
|
run: |
|
||||||
|
git config user.name "GitHub Actions Bot"
|
||||||
|
git config user.email "actions@github.com"
|
||||||
|
|
||||||
|
- name: Create branch for updates
|
||||||
|
run: |
|
||||||
|
DATE=$(date +%Y-%m-%d)
|
||||||
|
BRANCH_NAME="update/dependencies-$DATE"
|
||||||
|
git checkout -b $BRANCH_NAME
|
||||||
|
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Update npins
|
||||||
|
run: nix run nixpkgs#npins update
|
||||||
|
|
||||||
|
# Only update Nixpkgs. mnw might break on update, better to track it manually to avoid
|
||||||
|
# unexpected breakage.
|
||||||
|
- name: Update nixpkgs
|
||||||
|
run: nix flake update nixpkgs
|
||||||
|
|
||||||
|
- name: Check for changes
|
||||||
|
id: check_changes
|
||||||
|
run: |
|
||||||
|
if git diff --quiet; then
|
||||||
|
echo "No changes detected"
|
||||||
|
echo "changes_detected=false" >> "$GITHUB_OUTPUT"
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
echo "Changes detected"
|
||||||
|
echo "changes_detected=true" >> "$GITHUB_OUTPUT"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# FIXME: Worth adding additional checks for, e.g., fragile plugins
|
||||||
|
# or modules
|
||||||
|
# nix build .#checks.<system>.<check-name>
|
||||||
|
# We'll probably want to handle this with machine tests
|
||||||
|
- name: Verify changes
|
||||||
|
if: steps.check_changes.outputs.changes_detected == 'true'
|
||||||
|
run: |
|
||||||
|
# Run verification tests to ensure updates don't break anything
|
||||||
|
nix flake check
|
||||||
|
|
||||||
|
|
||||||
|
- name: Set date variable
|
||||||
|
run: echo "DATE=$(date +%Y-%m-%d)" >> "$GITHUB_ENV"
|
||||||
|
|
||||||
|
- name: Commit and push changes
|
||||||
|
if: steps.check_changes.outputs.changes_detected == 'true'
|
||||||
|
run: |
|
||||||
|
git add .
|
||||||
|
git commit -m "pins: bump all plugins (${{ env.DATE }})"
|
||||||
|
git push -u origin $BRANCH_NAME
|
||||||
|
|
||||||
|
- name: Create Pull Request
|
||||||
|
if: steps.check_changes.outputs.changes_detected == 'true'
|
||||||
|
uses: peter-evans/create-pull-request@v7
|
||||||
|
with:
|
||||||
|
branch: ${{ env.BRANCH_NAME }}
|
||||||
|
base: main
|
||||||
|
labels: dependencies,automated pr
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
commit-message: "npins: bump all plugins (${{ env.DATE }})"
|
||||||
|
title: "Weekly Dependency Updates: ${{ env.DATE }}"
|
||||||
|
body: |
|
||||||
|
> [!NOTE]
|
||||||
|
> This PR was automatically generated by the Weekly Dependency Updates workflow. Please wait
|
||||||
|
> for all CI steps to complete, and test any major changes personally.
|
||||||
|
|
||||||
|
Updates Performed:
|
||||||
|
|
||||||
|
- Updated dependencies using `npins update`
|
||||||
|
- Updated nixpkgs using `nix flake update nixpkgs`
|
||||||
|
|
||||||
|
If the verification steps have passed, updates should be safe to merge. For failing CI steps
|
||||||
|
submit a Pull Request targetting ${{ env.BRANCH_NAME }}
|
||||||
|
|
@ -31,6 +31,7 @@ isMaximal: {
|
||||||
lspSignature.enable = !isMaximal; # conflicts with blink in maximal
|
lspSignature.enable = !isMaximal; # conflicts with blink in maximal
|
||||||
otter-nvim.enable = isMaximal;
|
otter-nvim.enable = isMaximal;
|
||||||
nvim-docs-view.enable = isMaximal;
|
nvim-docs-view.enable = isMaximal;
|
||||||
|
harper-ls.enable = isMaximal;
|
||||||
};
|
};
|
||||||
|
|
||||||
debugger = {
|
debugger = {
|
||||||
|
|
@ -56,6 +57,7 @@ isMaximal: {
|
||||||
clang.enable = isMaximal;
|
clang.enable = isMaximal;
|
||||||
css.enable = isMaximal;
|
css.enable = isMaximal;
|
||||||
html.enable = isMaximal;
|
html.enable = isMaximal;
|
||||||
|
json.enable = isMaximal;
|
||||||
sql.enable = isMaximal;
|
sql.enable = isMaximal;
|
||||||
java.enable = isMaximal;
|
java.enable = isMaximal;
|
||||||
kotlin.enable = isMaximal;
|
kotlin.enable = isMaximal;
|
||||||
|
|
@ -67,7 +69,7 @@ isMaximal: {
|
||||||
typst.enable = isMaximal;
|
typst.enable = isMaximal;
|
||||||
rust = {
|
rust = {
|
||||||
enable = isMaximal;
|
enable = isMaximal;
|
||||||
crates.enable = isMaximal;
|
extensions.crates-nvim.enable = isMaximal;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Language modules that are not as common.
|
# Language modules that are not as common.
|
||||||
|
|
@ -84,8 +86,11 @@ isMaximal: {
|
||||||
ocaml.enable = false;
|
ocaml.enable = false;
|
||||||
elixir.enable = false;
|
elixir.enable = false;
|
||||||
haskell.enable = false;
|
haskell.enable = false;
|
||||||
|
hcl.enable = false;
|
||||||
ruby.enable = false;
|
ruby.enable = false;
|
||||||
fsharp.enable = false;
|
fsharp.enable = false;
|
||||||
|
just.enable = false;
|
||||||
|
qml.enable = false;
|
||||||
|
|
||||||
tailwind.enable = false;
|
tailwind.enable = false;
|
||||||
svelte.enable = false;
|
svelte.enable = false;
|
||||||
|
|
@ -188,6 +193,7 @@ isMaximal: {
|
||||||
vim-wakatime.enable = false;
|
vim-wakatime.enable = false;
|
||||||
diffview-nvim.enable = true;
|
diffview-nvim.enable = true;
|
||||||
yanky-nvim.enable = false;
|
yanky-nvim.enable = false;
|
||||||
|
qmk-nvim.enable = false; # requires hardware specific options
|
||||||
icon-picker.enable = isMaximal;
|
icon-picker.enable = isMaximal;
|
||||||
surround.enable = isMaximal;
|
surround.enable = isMaximal;
|
||||||
leetcode-nvim.enable = isMaximal;
|
leetcode-nvim.enable = isMaximal;
|
||||||
|
|
|
||||||
|
|
@ -92,7 +92,7 @@
|
||||||
|
|
||||||
# Generate the HTML manual pages
|
# Generate the HTML manual pages
|
||||||
html = pkgs.callPackage ./manual.nix {
|
html = pkgs.callPackage ./manual.nix {
|
||||||
inherit release;
|
inherit inputs release;
|
||||||
inherit (nvimModuleDocs) optionsJSON;
|
inherit (nvimModuleDocs) optionsJSON;
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
|
||||||
141
docs/manual.nix
141
docs/manual.nix
|
|
@ -1,114 +1,47 @@
|
||||||
{
|
{
|
||||||
lib,
|
inputs,
|
||||||
stdenvNoCC,
|
|
||||||
fetchzip,
|
|
||||||
runCommandLocal,
|
|
||||||
# build inputs
|
|
||||||
nixos-render-docs,
|
|
||||||
documentation-highlighter,
|
|
||||||
dart-sass,
|
|
||||||
path,
|
path,
|
||||||
# nrd configuration
|
stdenvNoCC,
|
||||||
release,
|
runCommandLocal,
|
||||||
optionsJSON,
|
optionsJSON,
|
||||||
|
release,
|
||||||
} @ args: let
|
} @ args: let
|
||||||
manual-release = args.release or "unstable";
|
manual-release = args.release or "unstable";
|
||||||
|
|
||||||
scss-reset = fetchzip {
|
|
||||||
url = "https://github.com/Frontend-Layers/scss-reset/archive/refs/tags/1.4.2.zip";
|
|
||||||
hash = "sha256-cif5Sx8Ca5vxdw/mNAgpulLH15TwmzyJFNM7JURpoaE=";
|
|
||||||
};
|
|
||||||
|
|
||||||
compileStylesheet = runCommandLocal "compile-nvf-stylesheet" {} ''
|
|
||||||
mkdir -p $out
|
|
||||||
|
|
||||||
tmpfile=$(mktemp -d)
|
|
||||||
trap "rm -r $tmpfile" EXIT
|
|
||||||
|
|
||||||
ln -s "${scss-reset}/build" "$tmpfile/scss-reset"
|
|
||||||
|
|
||||||
${dart-sass}/bin/sass --load-path "$tmpfile" \
|
|
||||||
${./static/style.scss} "$out/style.css"
|
|
||||||
|
|
||||||
echo "Generated styles"
|
|
||||||
'';
|
|
||||||
in
|
in
|
||||||
stdenvNoCC.mkDerivation {
|
runCommandLocal "nvf-docs-html" {
|
||||||
name = "nvf-manual";
|
nativeBuildInputs = [
|
||||||
src = builtins.path {
|
(inputs.ndg.packages.${stdenvNoCC.system}.ndg.overrideAttrs
|
||||||
name = "nvf-manual-${manual-release}";
|
{
|
||||||
path = lib.sourceFilesBySuffices ./manual [".md" ".md.in"];
|
# FIXME: the tests take too long to build
|
||||||
};
|
doCheck = false;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
} ''
|
||||||
|
mkdir -p $out/share/doc
|
||||||
|
|
||||||
strictDependencies = true;
|
# Copy the markdown sources to be processed by ndg. This is not
|
||||||
nativeBuildInputs = [nixos-render-docs];
|
# strictly necessary, but allows us to modify the Markdown sources
|
||||||
|
# as we see fit.
|
||||||
|
cp -rvf ${./manual} ./manual
|
||||||
|
|
||||||
postPatch = ''
|
# Replace variables following the @VARIABLE@ style in the manual
|
||||||
ln -s ${optionsJSON}/share/doc/nixos/options.json ./config-options.json
|
# pages. This can be built into ndg at a later date.
|
||||||
'';
|
substituteInPlace ./manual/index.md \
|
||||||
|
--subst-var-by NVF_VERSION ${manual-release}
|
||||||
|
|
||||||
buildPhase = ''
|
# Generate the final manual from a set of parameters. This uses
|
||||||
dest="$out/share/doc/nvf"
|
# feel-co/ndg to render the web manual.
|
||||||
mkdir -p "$(dirname "$dest")"
|
ndg html \
|
||||||
mkdir -p $dest/{highlightjs,script}
|
--jobs $NIX_BUILD_CORES --title "NVF" \
|
||||||
|
--module-options ${optionsJSON}/share/doc/nixos/options.json \
|
||||||
|
--manpage-urls ${path}/doc/manpage-urls.json \
|
||||||
|
--options-depth 3 \
|
||||||
|
--generate-search \
|
||||||
|
--highlight-code \
|
||||||
|
--input-dir ./manual \
|
||||||
|
--output-dir "$out/share/doc"
|
||||||
|
|
||||||
# Copy highlight scripts to /highlights in document root.
|
# Hydra support. Probably not necessary.
|
||||||
cp -vt $dest/highlightjs \
|
mkdir -p $out/nix-support/
|
||||||
${documentation-highlighter}/highlight.pack.js \
|
echo "doc manual $dest index.html" >> $out/nix-support/hydra-build-products
|
||||||
${documentation-highlighter}/LICENSE \
|
''
|
||||||
${documentation-highlighter}/mono-blue.css \
|
|
||||||
${documentation-highlighter}/loader.js
|
|
||||||
|
|
||||||
# Copy anchor scripts to the script directory in document root.
|
|
||||||
cp -vt "$dest"/script \
|
|
||||||
${./static/script}/anchor-min.js \
|
|
||||||
${./static/script}/anchor-use.js \
|
|
||||||
${./static/script}/search.js
|
|
||||||
|
|
||||||
substituteInPlace ./options.md \
|
|
||||||
--subst-var-by OPTIONS_JSON ./config-options.json
|
|
||||||
|
|
||||||
substituteInPlace ./manual.md \
|
|
||||||
--subst-var-by NVF_VERSION ${manual-release}
|
|
||||||
|
|
||||||
substituteInPlace ./hacking/additional-plugins.md \
|
|
||||||
--subst-var-by NVF_REPO "https://github.com/notashelf/nvf/blob/${manual-release}"
|
|
||||||
|
|
||||||
# Move compiled stylesheet
|
|
||||||
cp -vt $dest \
|
|
||||||
${compileStylesheet}/style.css
|
|
||||||
|
|
||||||
# Move release notes
|
|
||||||
cp -vr ${./release-notes} release-notes
|
|
||||||
|
|
||||||
# Generate final manual from a set of parameters. Explanation of the CLI flags are
|
|
||||||
# as follows:
|
|
||||||
#
|
|
||||||
# 1. --manpage-urls will allow you to use manual pages as they are defined in
|
|
||||||
# the nixpkgs documentation.
|
|
||||||
# 2. --revision is the project revision as it is defined in 'release.json' in the
|
|
||||||
# repository root
|
|
||||||
# 3. --script will inject a given Javascript file into the resulting pages inside
|
|
||||||
# the <script> tag.
|
|
||||||
# 4. --toc-depth will determine the depth of the initial Table of Contents while
|
|
||||||
# --section-toc-depth will determine the depth of per-section Table of Contents
|
|
||||||
# sections.
|
|
||||||
nixos-render-docs manual html \
|
|
||||||
--manpage-urls ${path + "/doc/manpage-urls.json"} \
|
|
||||||
--revision ${lib.trivial.revisionWithDefault manual-release} \
|
|
||||||
--stylesheet style.css \
|
|
||||||
--script highlightjs/highlight.pack.js \
|
|
||||||
--script highlightjs/loader.js \
|
|
||||||
--script script/anchor-use.js \
|
|
||||||
--script script/anchor-min.js \
|
|
||||||
--script script/search.js \
|
|
||||||
--toc-depth 1 \
|
|
||||||
--section-toc-depth 1 \
|
|
||||||
manual.md \
|
|
||||||
"$dest/index.xhtml"
|
|
||||||
|
|
||||||
# Hydra support. Probably not necessary.
|
|
||||||
mkdir -p $out/nix-support/
|
|
||||||
echo "doc manual $dest index.html" >> $out/nix-support/hydra-build-products
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
# Configuring nvf {#ch-configuring}
|
# Configuring nvf {#ch-configuring}
|
||||||
|
|
||||||
[helpful tips section]: #ch-helpful-tips
|
[helpful tips section]: ./tips.html#ch-helpful-tips
|
||||||
|
[options reference]: ./options.html
|
||||||
|
|
||||||
nvf allows for _very_ extensive configuration in Neovim through the Nix module
|
nvf allows for _very_ extensive configuration in Neovim through the Nix module
|
||||||
interface. The below chapters describe several of the options exposed in nvf for
|
interface. The below chapters describe several of the options exposed in nvf for
|
||||||
|
|
@ -8,7 +9,7 @@ your convenience. You might also be interested in the [helpful tips section] for
|
||||||
more advanced or unusual configuration options supported by nvf.
|
more advanced or unusual configuration options supported by nvf.
|
||||||
|
|
||||||
Note that this section does not cover module _options_. For an overview of all
|
Note that this section does not cover module _options_. For an overview of all
|
||||||
module options provided by nvf, please visit the [appendix](/nvf/options.html)
|
module options provided by nvf, please visit the [options reference]
|
||||||
|
|
||||||
```{=include=} chapters
|
```{=include=} chapters
|
||||||
configuring/custom-package.md
|
configuring/custom-package.md
|
||||||
|
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
# Custom Neovim Package {#ch-custom-package}
|
|
||||||
|
|
||||||
As of v0.5, you may now specify the Neovim package that will be wrapped with
|
|
||||||
your configuration. This is done with the [](#opt-vim.package) option.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
{inputs, pkgs, ...}: {
|
|
||||||
# using the neovim-nightly overlay
|
|
||||||
vim.package = inputs.neovim-overlay.packages.${pkgs.stdenv.system}.neovim;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
The neovim-nightly-overlay always exposes an unwrapped package. If using a
|
|
||||||
different source, you are highly recommended to get an "unwrapped" version of
|
|
||||||
the neovim package, similar to `neovim-unwrapped` in nixpkgs.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
{ pkgs, ...}: {
|
|
||||||
# using the neovim-nightly overlay
|
|
||||||
vim.package = pkgs.neovim-unwrapped;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
@ -19,7 +19,7 @@ as a module.
|
||||||
:::{.info}
|
:::{.info}
|
||||||
|
|
||||||
To add a plugin to your runtime, you will need to add it to
|
To add a plugin to your runtime, you will need to add it to
|
||||||
[](#opt-vim.startPlugins) list in your configuration. This is akin to cloning a
|
{option}`vim.startPlugins` list in your configuration. This is akin to cloning a
|
||||||
plugin to `~/.config/nvim`, but they are only ever placed in the Nix store and
|
plugin to `~/.config/nvim`, but they are only ever placed in the Nix store and
|
||||||
never exposed to the outside world for purity and full isolation.
|
never exposed to the outside world for purity and full isolation.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,17 @@
|
||||||
# Legacy Method {#sec-legacy-method}
|
# Legacy Method {#sec-legacy-method}
|
||||||
|
|
||||||
Prior to version **0.5**, the method of adding new plugins was adding the plugin
|
Prior to version **0.5**, the method of adding new plugins was adding the plugin
|
||||||
package to [](#opt-vim.startPlugins) and adding its configuration as a DAG under
|
package to {option}`vim.startPlugins` and adding its configuration as a DAG
|
||||||
one of `vim.configRC` or [](#opt-vim.luaConfigRC). While `configRC` has been
|
under one of `vim.configRC` or {option}`vim.luaConfigRC`. While `configRC` has
|
||||||
deprecated, users who have not yet updated to 0.5 or those who prefer a more
|
been deprecated, users who have not yet updated to 0.5 or those who prefer a
|
||||||
hands-on approach may choose to use the old method where the load order of the
|
more hands-on approach may choose to use the old method where the load order of
|
||||||
plugins is explicitly determined by DAGs without internal abstractions.
|
the plugins is explicitly determined by DAGs without internal abstractions.
|
||||||
|
|
||||||
## Adding New Plugins {#sec-adding-new-plugins}
|
## Adding New Plugins {#sec-adding-new-plugins}
|
||||||
|
|
||||||
To add a plugin not available in **nvf** as a module to your configuration using
|
To add a plugin not available in **nvf** as a module to your configuration using
|
||||||
the legacy method, you must add it to [](#opt-vim.startPlugins) in order to make
|
the legacy method, you must add it to {option}`vim.startPlugins` in order to
|
||||||
it available to Neovim at runtime.
|
make it available to Neovim at runtime.
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
As of version **0.5**, we have a more extensive API for configuring plugins that
|
As of version **0.5**, we have a more extensive API for configuring plugins that
|
||||||
should be preferred over the legacy method. This API is available as
|
should be preferred over the legacy method. This API is available as
|
||||||
[](#opt-vim.extraPlugins). Instead of using DAGs exposed by the library
|
{option}`vim.extraPlugins`. Instead of using DAGs exposed by the library
|
||||||
_directly_, you may use the extra plugin module as follows:
|
_directly_, you may use the extra plugin module as follows:
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,92 @@
|
||||||
# Language Support {#ch-languages}
|
# Language Support {#ch-languages}
|
||||||
|
|
||||||
Language specific support means there is a combination of language specific
|
Language specific support means there is a combination of language specific
|
||||||
plugins, `treesitter` support, `nvim-lspconfig` language servers, and `null-ls`
|
plugins, `treesitter` support, `nvim-lspconfig` language servers, `conform-nvim`
|
||||||
integration. This gets you capabilities ranging from autocompletion to
|
formatters, and `nvim-lint` linter integration. This gets you capabilities
|
||||||
formatting to diagnostics. The following languages have sections under the
|
ranging from autocompletion to formatting to diagnostics. The following
|
||||||
`vim.languages` attribute.
|
languages have sections under the `vim.languages` attribute.
|
||||||
|
|
||||||
- Rust: [vim.languages.rust.enable](#opt-vim.languages.rust.enable)
|
- Rust:
|
||||||
- Nix: [vim.languages.nix.enable](#opt-vim.languages.nix.enable)
|
[vim.languages.rust.enable](./options.html#option-vim-languages-rust-enable)
|
||||||
- SQL: [vim.languages.sql.enable](#opt-vim.languages.sql.enable)
|
- Nix:
|
||||||
- C/C++: [vim.languages.clang.enable](#opt-vim.languages.clang.enable)
|
[vim.languages.nix.enable](./options.html#option-vim-languages-nix-enable)
|
||||||
- Typescript/Javascript: [vim.languages.ts.enable](#opt-vim.languages.ts.enable)
|
- SQL:
|
||||||
- Python: [vim.languages.python.enable](#opt-vim.languages.python.enable):
|
[vim.languages.sql.enable](./options.html#option-vim-languages-sql-enable)
|
||||||
- Zig: [vim.languages.zig.enable](#opt-vim.languages.zig.enable)
|
- C/C++:
|
||||||
- Markdown: [vim.languages.markdown.enable](#opt-vim.languages.markdown.enable)
|
[vim.languages.clang.enable](./options.html#option-vim-languages-clang-enable)
|
||||||
- HTML: [vim.languages.html.enable](#opt-vim.languages.html.enable)
|
- Typescript/Javascript:
|
||||||
- Dart: [vim.languages.dart.enable](#opt-vim.languages.dart.enable)
|
[vim.languages.ts.enable](./options.html#option-vim-languages-ts-enable)
|
||||||
- Go: [vim.languages.go.enable](#opt-vim.languages.go.enable)
|
- Python:
|
||||||
- Lua: [vim.languages.lua.enable](#opt-vim.languages.lua.enable)
|
[vim.languages.python.enable](./options.html#option-vim-languages-python-enable):
|
||||||
- PHP: [vim.languages.php.enable](#opt-vim.languages.php.enable)
|
- Zig:
|
||||||
- F#: [vim.languages.fsharp.enable](#opt-vim.languages.fsharp.enable)
|
[vim.languages.zig.enable](./options.html#option-vim-languages-zig-enable)
|
||||||
|
- Markdown:
|
||||||
|
[vim.languages.markdown.enable](./options.html#option-vim-languages-markdown-enable)
|
||||||
|
- HTML:
|
||||||
|
[vim.languages.html.enable](./options.html#option-vim-languages-html-enable)
|
||||||
|
- Dart:
|
||||||
|
[vim.languages.dart.enable](./options.html#option-vim-languages-dart-enable)
|
||||||
|
- Go: [vim.languages.go.enable](./options.html#option-vim-languages-go-enable)
|
||||||
|
- Lua:
|
||||||
|
[vim.languages.lua.enable](./options.html#option-vim-languages-lua-enable)
|
||||||
|
- PHP:
|
||||||
|
[vim.languages.php.enable](./options.html#option-vim-languages-php-enable)
|
||||||
|
- F#:
|
||||||
|
[vim.languages.fsharp.enable](./options.html#option-vim-languages-fsharp-enable)
|
||||||
|
- Assembly:
|
||||||
|
[vim.languages.assembly.enable](./options.html#option-vim-languages-assembly-enable)
|
||||||
|
- Astro:
|
||||||
|
[vim.languages.astro.enable](./options.html#option-vim-languages-astro-enable)
|
||||||
|
- Bash:
|
||||||
|
[vim.languages.bash.enable](./options.html#option-vim-languages-bash-enable)
|
||||||
|
- Clang:
|
||||||
|
[vim.languages.clang.enable](./options.html#option-vim-languages-clang-enable)
|
||||||
|
- Clojure:
|
||||||
|
[vim.languages.clojure.enable](./options.html#option-vim-languages-clojure-enable)
|
||||||
|
- C#:
|
||||||
|
[vim.languages.csharp.enable](./options.html#option-vim-languages-csharp-enable)
|
||||||
|
- CSS:
|
||||||
|
[vim.languages.css.enable](./options.html#option-vim-languages-css-enable)
|
||||||
|
- CUE:
|
||||||
|
[vim.languages.cue.enable](./options.html#option-vim-languages-cue-enable)
|
||||||
|
- Elixir:
|
||||||
|
[vim.languages.elixir.enable](./options.html#option-vim-languages-elixir-enable)
|
||||||
|
- Gleam:
|
||||||
|
[vim.languages.gleam.enable](./options.html#option-vim-languages-gleam-enable)
|
||||||
|
- HCL:
|
||||||
|
[vim.languages.hcl.enable](./options.html#option-vim-languages-hcl-enable)
|
||||||
|
- Helm:
|
||||||
|
[vim.languages.helm.enable](./options.html#option-vim-languages-helm-enable)
|
||||||
|
- Julia:
|
||||||
|
[vim.languages.julia.enable](./options.html#option-vim-languages-julia-enable)
|
||||||
|
- Kotlin:
|
||||||
|
[vim.languages.kotlin.enable](./options.html#option-vim-languages-kotlin-enable)
|
||||||
|
- Nim:
|
||||||
|
[vim.languages.nim.enable](./options.html#option-vim-languages-nim-enable)
|
||||||
|
- Nu: [vim.languages.nu.enable](./options.html#option-vim-languages-nu-enable)
|
||||||
|
- OCaml:
|
||||||
|
[vim.languages.ocaml.enable](./options.html#option-vim-languages-ocaml-enable)
|
||||||
|
- Odin:
|
||||||
|
[vim.languages.odin.enable](./options.html#option-vim-languages-odin-enable)
|
||||||
|
- R: [vim.languages.r.enable](./options.html#option-vim-languages-r-enable)
|
||||||
|
- Ruby:
|
||||||
|
[vim.languages.ruby.enable](./options.html#option-vim-languages-ruby-enable)
|
||||||
|
- Scala:
|
||||||
|
[vim.languages.scala.enable](./options.html#option-vim-languages-scala-enable)
|
||||||
|
- Svelte:
|
||||||
|
[vim.languages.svelte.enable](./options.html#option-vim-languages-svelte-enable)
|
||||||
|
- Tailwind:
|
||||||
|
[vim.languages.tailwind.enable](./options.html#option-vim-languages-tailwind-enable)
|
||||||
|
- Terraform:
|
||||||
|
[vim.languages.terraform.enable](./options.html#option-vim-languages-terraform-enable)
|
||||||
|
- Typst:
|
||||||
|
[vim.languages.typst.enable](./options.html#option-vim-languages-typst-enable)
|
||||||
|
- Vala:
|
||||||
|
[vim.languages.vala.enable](./options.html#option-vim-languages-vala-enable)
|
||||||
|
- WGSL:
|
||||||
|
[vim.languages.wgsl.enable](./options.html#option-vim-languages-wgsl-enable)
|
||||||
|
- YAML:
|
||||||
|
[vim.languages.yaml.enable](./options.html#option-vim-languages-yaml-enable)
|
||||||
|
|
||||||
Adding support for more languages, and improving support for existing ones are
|
Adding support for more languages, and improving support for existing ones are
|
||||||
great places where you can contribute with a PR.
|
great places where you can contribute with a PR.
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
# Overriding plugins {#ch-overriding-plugins}
|
# Overriding plugins {#ch-overriding-plugins}
|
||||||
|
|
||||||
The [additional plugins section](#sec-additional-plugins) details the addition
|
The [additional plugins section](./hacking.html#sec-additional-plugins) details
|
||||||
of new plugins to nvf under regular circumstances, i.e. while making a pull
|
the addition of new plugins to nvf under regular circumstances, i.e. while
|
||||||
request to the project. You may _override_ those plugins in your config to
|
making a pull request to the project. You may _override_ those plugins in your
|
||||||
change source versions, e.g., to use newer versions of plugins that are not yet
|
config to change source versions, e.g., to use newer versions of plugins that
|
||||||
updated in **nvf**.
|
are not yet updated in **nvf**.
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
vim.pluginOverrides = {
|
vim.pluginOverrides = {
|
||||||
|
|
@ -22,7 +22,7 @@ vim.pluginOverrides = {
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
This will override the source for the `neodev.nvim` plugin that is used in nvf
|
This will override the source for the `lazydev.nvim` plugin that is used in nvf
|
||||||
with your own plugin.
|
with your own plugin.
|
||||||
|
|
||||||
::: {.warning}
|
::: {.warning}
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,586 @@ ideally also include relevant context in which an issue occurs or a feature
|
||||||
should be implemented. If you wish to make a contribution, but feel stuck -
|
should be implemented. If you wish to make a contribution, but feel stuck -
|
||||||
please do not be afraid to submit a pull request, we will help you get it in.
|
please do not be afraid to submit a pull request, we will help you get it in.
|
||||||
|
|
||||||
```{=include=} sections
|
## Getting Started {#sec-contrib-getting-started}
|
||||||
hacking/getting-started.md
|
|
||||||
hacking/guidelines.md
|
You, naturally, would like to start by forking the repository to get started. If
|
||||||
hacking/testing.md
|
you are new to Git and GitHub, do have a look at GitHub's
|
||||||
hacking/keybinds.md
|
[Fork a repo guide](https://help.github.com/articles/fork-a-repo/) for
|
||||||
hacking/additional-plugins.md
|
instructions on how you can do this. Once you have a fork of **nvf**, you should
|
||||||
|
create a separate branch based on the most recent `main` branch. Give your
|
||||||
|
branch a reasonably descriptive name (e.g. `feature/debugger` or
|
||||||
|
`fix/pesky-bug`) and you are ready to work on your changes
|
||||||
|
|
||||||
|
Implement your changes and commit them to the newly created branch and when you
|
||||||
|
are happy with the result, and positive that it fulfills our
|
||||||
|
[Contributing Guidelines](#sec-guidelines), push the branch to GitHub and
|
||||||
|
[create a pull request](https://help.github.com/articles/creating-a-pull-request).
|
||||||
|
The default pull request template available on the **nvf** repository will guide
|
||||||
|
you through the rest of the process, and we'll gently nudge you in the correct
|
||||||
|
direction if there are any mistakes.
|
||||||
|
|
||||||
|
## Guidelines {#sec-guidelines}
|
||||||
|
|
||||||
|
If your contribution tightly follows the guidelines, then there is a good chance
|
||||||
|
it will be merged without too much trouble. Some of the guidelines will be
|
||||||
|
strictly enforced, others will remain as gentle nudges towards the correct
|
||||||
|
direction. As we have no automated system enforcing those guidelines, please try
|
||||||
|
to double check your changes before making your pull request in order to avoid
|
||||||
|
"faulty" code slipping by.
|
||||||
|
|
||||||
|
If you are uncertain how these rules affect the change you would like to make
|
||||||
|
then feel free to start a discussion in the
|
||||||
|
[discussions tab](https://github.com/NotAShelf/nvf/discussions) ideally (but not
|
||||||
|
necessarily) before you start developing.
|
||||||
|
|
||||||
|
### Adding Documentation {#sec-guidelines-documentation}
|
||||||
|
|
||||||
|
[Nixpkgs Flavoured Markdown]: https://github.com/NixOS/nixpkgs/blob/master/doc/README.md#syntax
|
||||||
|
|
||||||
|
Almost all changes warrant updates to the documentation: at the very least, you
|
||||||
|
must update the changelog. Both the manual and module options use
|
||||||
|
[Nixpkgs Flavoured Markdown].
|
||||||
|
|
||||||
|
The HTML version of this manual containing both the module option descriptions
|
||||||
|
and the documentation of **nvf** (such as this page) can be generated and opened
|
||||||
|
by typing the following in a shell within a clone of the **nvf** Git repository:
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ nix build .#docs-html
|
||||||
|
$ xdg-open $PWD/result/share/doc/nvf/index.html
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Formatting Code {#sec-guidelines-formatting}
|
||||||
|
|
||||||
|
Make sure your code is formatted as described in
|
||||||
|
[code-style section](#sec-guidelines-code-style). To maintain consistency
|
||||||
|
throughout the project you are encouraged to browse through existing code and
|
||||||
|
adopt its style also in new code.
|
||||||
|
|
||||||
|
### Formatting Commits {#sec-guidelines-commit-message-style}
|
||||||
|
|
||||||
|
Similar to [code style guidelines](#sec-guidelines-code-style) we encourage a
|
||||||
|
consistent commit message format as described in
|
||||||
|
[commit style guidelines](#sec-guidelines-commit-style).
|
||||||
|
|
||||||
|
### Commit Style {#sec-guidelines-commit-style}
|
||||||
|
|
||||||
|
The commits in your pull request should be reasonably self-contained. Which
|
||||||
|
means each and every commit in a pull request should make sense both on its own
|
||||||
|
and in general context. That is, a second commit should not resolve an issue
|
||||||
|
that is introduced in an earlier commit. In particular, you will be asked to
|
||||||
|
amend any commit that introduces syntax errors or similar problems even if they
|
||||||
|
are fixed in a later commit.
|
||||||
|
|
||||||
|
The commit messages should follow the
|
||||||
|
[seven rules](https://chris.beams.io/posts/git-commit/#seven-rule), except for
|
||||||
|
"Capitalize the subject line". We also ask you to include the affected code
|
||||||
|
component or module in the first line. A commit message ideally, but not
|
||||||
|
necessarily, follow the given template from home-manager's own documentation
|
||||||
|
|
||||||
|
```
|
||||||
|
{component}: {description}
|
||||||
|
|
||||||
|
{long description}
|
||||||
|
```
|
||||||
|
|
||||||
|
where `{component}` refers to the code component (or module) your change
|
||||||
|
affects, `{description}` is a very brief description of your change, and
|
||||||
|
`{long description}` is an optional clarifying description. As a rare exception,
|
||||||
|
if there is no clear component, or your change affects many components, then the
|
||||||
|
`{component}` part is optional. See
|
||||||
|
[example commit message](#sec-guidelines-ex-commit-message) for a commit message
|
||||||
|
that fulfills these requirements.
|
||||||
|
|
||||||
|
#### Example Commit {#sec-guidelines-ex-commit-message}
|
||||||
|
|
||||||
|
The commit
|
||||||
|
[69f8e47e9e74c8d3d060ca22e18246b7f7d988ef](https://github.com/nix-community/home-manager/commit/69f8e47e9e74c8d3d060ca22e18246b7f7d988ef)
|
||||||
|
in home-manager contains the following commit message.
|
||||||
|
|
||||||
|
```
|
||||||
|
starship: allow running in Emacs if vterm is used
|
||||||
|
|
||||||
|
The vterm buffer is backed by libvterm and can handle Starship prompts
|
||||||
|
without issues.
|
||||||
|
```
|
||||||
|
|
||||||
|
Similarly, if you are contributing to **nvf**, you would include the scope of
|
||||||
|
the commit followed by the description:
|
||||||
|
|
||||||
|
```
|
||||||
|
languages/ruby: init module
|
||||||
|
|
||||||
|
Adds a language module for Ruby, adds appropriate formatters and Treesitter grammars
|
||||||
|
```
|
||||||
|
|
||||||
|
Long description can be omitted if the change is too simple to warrant it. A
|
||||||
|
minor fix in spelling or a formatting change does not warrant long description,
|
||||||
|
however, a module addition or removal does as you would like to provide the
|
||||||
|
relevant context, i.e. the reasoning behind it, for your commit.
|
||||||
|
|
||||||
|
Finally, when adding a new module, say `modules/foo.nix`, we use the fixed
|
||||||
|
commit format `foo: add module`. You can, of course, still include a long
|
||||||
|
description if you wish.
|
||||||
|
|
||||||
|
In case of nested modules, i.e `modules/languages/java.nix` you are recommended
|
||||||
|
to contain the parent as well - for example `languages/java: some major change`.
|
||||||
|
|
||||||
|
### Code Style {#sec-guidelines-code-style}
|
||||||
|
|
||||||
|
#### Treewide {#sec-code-style-treewide}
|
||||||
|
|
||||||
|
Keep lines at a reasonable width, ideally 80 characters or less. This also
|
||||||
|
applies to string literals and module descriptions and documentation.
|
||||||
|
|
||||||
|
#### Nix {#sec-code-style-nix}
|
||||||
|
|
||||||
|
[alejandra]: https://github.com/kamadorueda/alejandra
|
||||||
|
|
||||||
|
**nvf** is formatted by the [alejandra] tool and the formatting is checked in
|
||||||
|
the pull request and push workflows. Run the `nix fmt` command inside the
|
||||||
|
project repository before submitting your pull request.
|
||||||
|
|
||||||
|
While Alejandra is mostly opinionated on how code looks after formatting,
|
||||||
|
certain changes are done at the user's discretion based on how the original code
|
||||||
|
was structured.
|
||||||
|
|
||||||
|
Please use one line code for attribute sets that contain only one subset. For
|
||||||
|
example:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
# parent modules should always be unfolded
|
||||||
|
# which means module = { value = ... } instead of module.value = { ... }
|
||||||
|
module = {
|
||||||
|
value = mkEnableOption "some description" // { default = true; }; # merges can be done inline where possible
|
||||||
|
|
||||||
|
# same as parent modules, unfold submodules
|
||||||
|
subModule = {
|
||||||
|
# this is an option that contains more than one nested value
|
||||||
|
# Note: try to be careful about the ordering of `mkOption` arguments.
|
||||||
|
# General rule of thumb is to order from least to most likely to change.
|
||||||
|
# This is, for most cases, type < default < description.
|
||||||
|
# Example, if present, would be between default and description
|
||||||
|
someOtherValue = mkOption {
|
||||||
|
type = lib.types.bool;
|
||||||
|
default = true;
|
||||||
|
description = "Some other description";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
If you move a line down after the merge operator, Alejandra will automatically
|
||||||
|
unfold the whole merged attrset for you, which we **do not** want.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
module = {
|
||||||
|
key = mkEnableOption "some description" // {
|
||||||
|
default = true; # we want this to be inline
|
||||||
|
}; # ...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
For lists, it is mostly up to your own discretion how you want to format them,
|
||||||
|
but please try to unfold lists if they contain multiple items and especially if
|
||||||
|
they are to include comments.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
# this is ok
|
||||||
|
acceptableList = [
|
||||||
|
item1 # comment
|
||||||
|
item2
|
||||||
|
item3 # some other comment
|
||||||
|
item4
|
||||||
|
];
|
||||||
|
|
||||||
|
# this is not ok
|
||||||
|
listToBeAvoided = [item1 item2 /* comment */ item3 item4];
|
||||||
|
|
||||||
|
# this is ok
|
||||||
|
acceptableList = [item1 item2];
|
||||||
|
|
||||||
|
# this is also ok if the list is expected to contain more elements
|
||||||
|
acceptableList= [
|
||||||
|
item1
|
||||||
|
item2
|
||||||
|
# more items if needed...
|
||||||
|
];
|
||||||
|
```
|
||||||
|
|
||||||
|
## Testing Changes {#sec-testing-changes}
|
||||||
|
|
||||||
|
Once you have made your changes, you will need to test them thoroughly. If it is
|
||||||
|
a module, add your module option to `configuration.nix` (located in the root of
|
||||||
|
this project) inside `neovimConfiguration`. Enable it, and then run the maximal
|
||||||
|
configuration with `nix run .#maximal -Lv` to check for build errors. If neovim
|
||||||
|
opens in the current directory without any error messages (you can check the
|
||||||
|
output of `:messages` inside neovim to see if there are any errors), then your
|
||||||
|
changes are good to go. Open your pull request, and it will be reviewed as soon
|
||||||
|
as possible.
|
||||||
|
|
||||||
|
If it is not a new module, but a change to an existing one, then make sure the
|
||||||
|
module you have changed is enabled in the maximal configuration by editing
|
||||||
|
`configuration.nix`, and then run it with `nix run .#maximal -Lv`. Same
|
||||||
|
procedure as adding a new module will apply here.
|
||||||
|
|
||||||
|
## Keybinds {#sec-keybinds}
|
||||||
|
|
||||||
|
As of 0.4, there exists an API for writing your own keybinds and a couple of
|
||||||
|
useful utility functions are available in the
|
||||||
|
[extended standard library](https://github.com/NotAShelf/nvf/tree/main/lib). The
|
||||||
|
following section contains a general overview to how you may utilize said
|
||||||
|
functions.
|
||||||
|
|
||||||
|
## Custom Key Mappings Support for a Plugin {#sec-custom-key-mappings}
|
||||||
|
|
||||||
|
To set a mapping, you should define it in `vim.keymaps`.
|
||||||
|
|
||||||
|
An example, simple keybinding, can look like this:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
{
|
||||||
|
vim.keymaps = [
|
||||||
|
{
|
||||||
|
key = "<leader>wq";
|
||||||
|
mode = ["n"];
|
||||||
|
action = ":wq<CR>";
|
||||||
|
silent = true;
|
||||||
|
desc = "Save file and quit";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
There are many settings available in the options. Please refer to the
|
||||||
|
[documentation](./options.html#option-vim-keymaps) to see a list of them.
|
||||||
|
|
||||||
|
**nvf** provides a helper function, so that you don't have to write the mapping
|
||||||
|
attribute sets every time:
|
||||||
|
|
||||||
|
- `mkKeymap`, which mimics neovim's `vim.keymap.set` function
|
||||||
|
|
||||||
|
You can read the source code of some modules to see them in action, but the
|
||||||
|
usage should look something like this:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
# plugindefinition.nix
|
||||||
|
{lib, ...}: let
|
||||||
|
inherit (lib.options) mkEnableOption;
|
||||||
|
inherit (lib.nvim.binds) mkMappingOption;
|
||||||
|
in {
|
||||||
|
options.vim.plugin = {
|
||||||
|
enable = mkEnableOption "Enable plugin";
|
||||||
|
|
||||||
|
# Mappings should always be inside an attrset called mappings
|
||||||
|
mappings = {
|
||||||
|
workspaceDiagnostics = mkMappingOption "Workspace diagnostics [trouble]" "<leader>lwd";
|
||||||
|
documentDiagnostics = mkMappingOption "Document diagnostics [trouble]" "<leader>ld";
|
||||||
|
lspReferences = mkMappingOption "LSP References [trouble]" "<leader>lr";
|
||||||
|
quickfix = mkMappingOption "QuickFix [trouble]" "<leader>xq";
|
||||||
|
locList = mkMappingOption "LOCList [trouble]" "<leader>xl";
|
||||||
|
symbols = mkMappingOption "Symbols [trouble]" "<leader>xs";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
```nix
|
||||||
|
# config.nix
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
options,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (lib.modules) mkIf;
|
||||||
|
inherit (lib.nvim.binds) mkKeymap;
|
||||||
|
|
||||||
|
cfg = config.vim.plugin;
|
||||||
|
|
||||||
|
keys = cfg.mappings;
|
||||||
|
inherit (options.vim.lsp.trouble) mappings;
|
||||||
|
in {
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
vim.keymaps = [
|
||||||
|
(mkKeymap "n" keys.workspaceDiagnostics "<cmd>Trouble toggle diagnostics<CR>" {desc = mappings.workspaceDiagnostics.description;})
|
||||||
|
(mkKeymap "n" keys.documentDiagnostics "<cmd>Trouble toggle diagnostics filter.buf=0<CR>" {desc = mappings.documentDiagnostics.description;})
|
||||||
|
(mkKeymap "n" keys.lspReferences "<cmd>Trouble toggle lsp_references<CR>" {desc = mappings.lspReferences.description;})
|
||||||
|
(mkKeymap "n" keys.quickfix "<cmd>Trouble toggle quickfix<CR>" {desc = mappings.quickfix.description;})
|
||||||
|
(mkKeymap "n" keys.locList "<cmd>Trouble toggle loclist<CR>" {desc = mappings.locList.description;})
|
||||||
|
(mkKeymap "n" keys.symbols "<cmd>Trouble toggle symbols<CR>" {desc = mappings.symbols.description;})
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> If you have come across a plugin that has an API that doesn't seem to easily
|
||||||
|
> allow custom keybindings, don't be scared to implement a draft PR. We'll help
|
||||||
|
> you get it done.
|
||||||
|
|
||||||
|
## Adding Plugins {#sec-additional-plugins}
|
||||||
|
|
||||||
|
There are two methods for adding new Neovim plugins to **nvf**. npins is the
|
||||||
|
faster option that should be preferred if the plugin consists of pure Lua or
|
||||||
|
Vimscript code. In which case there is no building required, and we can easily
|
||||||
|
handle the copying of plugin files. Alternative method, which is required when
|
||||||
|
plugins try to build their own libraries (e.g., in Rust or C) that need to be
|
||||||
|
built with Nix to function correctly.
|
||||||
|
|
||||||
|
### With npins {#sec-npins-for-plugins}
|
||||||
|
|
||||||
|
npins is the standard method of adding new plugins to **nvf**. You simply need
|
||||||
|
the repository URL for the plugin, and can add it as a source to be built
|
||||||
|
automatically with one command. To add a new Neovim plugin, use `npins`. For
|
||||||
|
example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
nix-shell -p npins # or nix shell nixpkgs#npins if using flakes
|
||||||
|
```
|
||||||
|
|
||||||
|
Then run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npins add --name <plugin name> github <owner> <repo> -b <branch>
|
||||||
|
```
|
||||||
|
|
||||||
|
::: {.note}
|
||||||
|
|
||||||
|
Be sure to replace any non-alphanumeric characters with `-` for `--name`. For
|
||||||
|
example
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npins add --name lazydev-nvim github folke lazydev.nvim -b main
|
||||||
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
Once the `npins` command is done, you can start referencing the plugin as a
|
||||||
|
**string**.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
{
|
||||||
|
config.vim.startPlugins = ["lazydev-nvim"];
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Packaging Complex Plugins {#sec-pkgs-for-plugins}
|
||||||
|
|
||||||
|
[blink.cmp]: https://github.com/Saghen/blink.cmp
|
||||||
|
|
||||||
|
Some plugins require additional packages to be built and substituted to function
|
||||||
|
correctly. For example [blink.cmp] requires its own fuzzy matcher library, built
|
||||||
|
with Rust, to be installed or else defaults to a much slower Lua implementation.
|
||||||
|
In the Blink documentation, you are advised to build with `cargo` but that is
|
||||||
|
not ideal since we are leveraging the power of Nix. In this case the ideal
|
||||||
|
solution is to write a derivation for the plugin.
|
||||||
|
|
||||||
|
We use `buildRustPackage` to build the library from the repository root, and
|
||||||
|
copy everything in the `postInstall` phase.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
postInstall = ''
|
||||||
|
cp -r {lua,plugin} "$out"
|
||||||
|
|
||||||
|
mkdir -p "$out/doc"
|
||||||
|
cp 'doc/'*'.txt' "$out/doc/"
|
||||||
|
|
||||||
|
mkdir -p "$out/target"
|
||||||
|
mv "$out/lib" "$out/target/release"
|
||||||
|
'';
|
||||||
|
```
|
||||||
|
|
||||||
|
In a similar fashion, you may utilize `stdenv.mkDerivation` and other Nixpkgs
|
||||||
|
builders to build your library from source, and copy the relevant files and Lua
|
||||||
|
plugin files in the `postInstall` phase. Do note, however, that you still need
|
||||||
|
to fetch the plugin sources somehow. npins is, once again, the recommended
|
||||||
|
option to fetch the plugin sources. Refer to the previous section on how to use
|
||||||
|
npins to add a new plugin.
|
||||||
|
|
||||||
|
Plugins built from source must go into the `flake/pkgs/by-name` overlay. It will
|
||||||
|
automatically create flake outputs for individual packages. Lastly, you must add
|
||||||
|
your package to the plugin builder (`pluginBuilders`) function manually in
|
||||||
|
`modules/wrapper/build/config.nix`. Once done, you may refer to your plugin as a
|
||||||
|
**string**.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
{
|
||||||
|
config.vim.startPlugins = ["blink-cmp"];
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Modular setup options {#sec-modular-setup-options}
|
||||||
|
|
||||||
|
Most plugins is initialized with a call to `require('plugin').setup({...})`.
|
||||||
|
|
||||||
|
We use a special function that lets you easily add support for such setup
|
||||||
|
options in a modular way: `mkPluginSetupOption`.
|
||||||
|
|
||||||
|
Once you have added the source of the plugin as shown above, you can define the
|
||||||
|
setup options like this:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
# in modules/.../your-plugin/your-plugin.nix
|
||||||
|
|
||||||
|
{lib, ...}:
|
||||||
|
let
|
||||||
|
inherit (lib.types) bool int;
|
||||||
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
||||||
|
in {
|
||||||
|
options.vim.your-plugin = {
|
||||||
|
setupOpts = mkPluginSetupOption "plugin name" {
|
||||||
|
enable_feature_a = mkOption {
|
||||||
|
type = bool;
|
||||||
|
default = false;
|
||||||
|
# ...
|
||||||
|
};
|
||||||
|
|
||||||
|
number_option = mkOption {
|
||||||
|
type = int;
|
||||||
|
default = 3;
|
||||||
|
# ...
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
```nix
|
||||||
|
# in modules/.../your-plugin/config.nix
|
||||||
|
{lib, config, ...}:
|
||||||
|
let
|
||||||
|
cfg = config.vim.your-plugin;
|
||||||
|
in {
|
||||||
|
vim.luaConfigRC = lib.nvim.dag.entryAnywhere ''
|
||||||
|
require('plugin-name').setup(${lib.nvim.lua.toLuaObject cfg.setupOpts})
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
This above config will result in this Lua script:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require('plugin-name').setup({
|
||||||
|
enable_feature_a = false,
|
||||||
|
number_option = 3,
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
Now users can set any of the pre-defined option field, and can also add their
|
||||||
|
own fields!
|
||||||
|
|
||||||
|
```nix
|
||||||
|
# in user's config
|
||||||
|
{
|
||||||
|
vim.your-plugin.setupOpts = {
|
||||||
|
enable_feature_a = true;
|
||||||
|
number_option = 4;
|
||||||
|
another_field = "hello";
|
||||||
|
size = { # nested fields work as well
|
||||||
|
top = 10;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Details of toLuaObject {#sec-details-of-toluaobject}
|
||||||
|
|
||||||
|
As you've seen above, `toLuaObject` is used to convert our nix attrSet
|
||||||
|
`cfg.setupOpts`, into a lua table. Here are some rules of the conversion:
|
||||||
|
|
||||||
|
1. Nix `null` converts to lua `nil`
|
||||||
|
2. Number and strings convert to their lua counterparts
|
||||||
|
3. Nix attribute sets (`{}`) and lists (`[]`) convert into Lua dictionaries and
|
||||||
|
tables respectively. Here is an example of Nix -> Lua conversion.
|
||||||
|
- `{foo = "bar"}` -> `{["foo"] = "bar"}`
|
||||||
|
- `["foo" "bar"]` -> `{"foo", "bar"}`
|
||||||
|
4. You can write raw Lua code using `lib.generators.mkLuaInline`. This function
|
||||||
|
is part of nixpkgs, and is accessible without relying on **nvf**'s extended
|
||||||
|
library.
|
||||||
|
- `mkLuaInline "function add(a, b) return a + b end"` will yield the
|
||||||
|
following result:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
{
|
||||||
|
_type = "lua-inline";
|
||||||
|
expr = "function add(a, b) return a + b end";
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The above expression will be interpreted as a Lua expression in the final
|
||||||
|
config. Without the `mkLuaInline` function, you will only receive a string
|
||||||
|
literal. You can use it to feed plugin configuration tables Lua functions
|
||||||
|
that return specific values as expected by the plugins.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
{
|
||||||
|
vim.your-plugin.setupOpts = {
|
||||||
|
on_init = lib.generators.mkLuaInline ''
|
||||||
|
function()
|
||||||
|
print('we can write lua!')
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Lazy plugins {#sec-lazy-plugins}
|
||||||
|
|
||||||
|
If the plugin can be lazy-loaded, `vim.lazy.plugins` should be used to add it.
|
||||||
|
Lazy plugins are managed by `lz.n`.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
# in modules/.../your-plugin/config.nix
|
||||||
|
{config, ...}: let
|
||||||
|
cfg = config.vim.your-plugin;
|
||||||
|
in {
|
||||||
|
vim.lazy.plugins.your-plugin = {
|
||||||
|
# Instead of vim.startPlugins, use this:
|
||||||
|
package = "your-plugin";
|
||||||
|
|
||||||
|
# ıf your plugin uses the `require('your-plugin').setup{...}` pattern
|
||||||
|
setupModule = "your-plugin";
|
||||||
|
inherit (cfg) setupOpts;
|
||||||
|
|
||||||
|
# Events that trigger this plugin to be loaded
|
||||||
|
event = ["DirChanged"];
|
||||||
|
cmd = ["YourPluginCommand"];
|
||||||
|
|
||||||
|
# Plugin Keymaps
|
||||||
|
keys = [
|
||||||
|
# We'll cover this in detail in the 'keybinds' section
|
||||||
|
{
|
||||||
|
key = "<leader>d";
|
||||||
|
mode = "n";
|
||||||
|
action = ":YourPluginCommand";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
This results in the following lua code:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require('lz.n').load({
|
||||||
|
{
|
||||||
|
"name-of-your-plugin",
|
||||||
|
after = function()
|
||||||
|
require('your-plugin').setup({
|
||||||
|
--[[ your setupOpts ]]--
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
event = {"DirChanged"},
|
||||||
|
cmd = {"YourPluginCommand"},
|
||||||
|
keys = {
|
||||||
|
{"<leader>d", ":YourPluginCommand", mode = {"n"}},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
[`vim.lazy.plugins` spec]: ./options.html#option-vim-lazy-plugins
|
||||||
|
|
||||||
|
A full list of options can be found in the [`vim.lazy.plugins` spec] on the
|
||||||
|
rendered manual.
|
||||||
|
|
|
||||||
|
|
@ -1,266 +0,0 @@
|
||||||
# Adding Plugins {#sec-additional-plugins}
|
|
||||||
|
|
||||||
There are two methods for adding new Neovim plugins to **nvf**. npins is the
|
|
||||||
faster option that should be preferred if the plugin consists of pure Lua or
|
|
||||||
Vimscript code. In which case there is no building required, and we can easily
|
|
||||||
handle the copying of plugin files. Alternative method, which is required when
|
|
||||||
plugins try to build their own libraries (e.g., in Rust or C) that need to be
|
|
||||||
built with Nix to function correctly.
|
|
||||||
|
|
||||||
## With npins {#sec-npins-for-plugins}
|
|
||||||
|
|
||||||
npins is the standard method of adding new plugins to **nvf**. You simply need
|
|
||||||
the repository URL for the plugin, and can add it as a source to be built
|
|
||||||
automatically with one command. To add a new Neovim plugin, use `npins`. For
|
|
||||||
example:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
nix-shell -p npins # or nix shell nixpkgs#npins if using flakes
|
|
||||||
```
|
|
||||||
|
|
||||||
Then run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npins add --name <plugin name> github <owner> <repo> -b <branch>
|
|
||||||
```
|
|
||||||
|
|
||||||
::: {.note}
|
|
||||||
|
|
||||||
Be sure to replace any non-alphanumeric characters with `-` for `--name`. For
|
|
||||||
example
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npins add --name lazydev-nvim github folke lazydev.nvim -b main
|
|
||||||
```
|
|
||||||
|
|
||||||
:::
|
|
||||||
|
|
||||||
Once the `npins` command is done, you can start referencing the plugin as a
|
|
||||||
**string**.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
{
|
|
||||||
config.vim.startPlugins = ["lazydev-nvim"];
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Packaging Complex Plugins {#sec-pkgs-for-plugins}
|
|
||||||
|
|
||||||
[blink.cmp]: https://github.com/Saghen/blink.cmp
|
|
||||||
|
|
||||||
Some plugins require additional packages to be built and substituted to function
|
|
||||||
correctly. For example [blink.cmp] requires its own fuzzy matcher library, built
|
|
||||||
with Rust, to be installed or else defaults to a much slower Lua implementation.
|
|
||||||
In the Blink documentation, you are advised to build with `cargo` but that is
|
|
||||||
not ideal since we are leveraging the power of Nix. In this case the ideal
|
|
||||||
solution is to write a derivation for the plugin.
|
|
||||||
|
|
||||||
We use `buildRustPackage` to build the library from the repository root, and
|
|
||||||
copy everything in the `postInstall` phase.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
postInstall = ''
|
|
||||||
cp -r {lua,plugin} "$out"
|
|
||||||
|
|
||||||
mkdir -p "$out/doc"
|
|
||||||
cp 'doc/'*'.txt' "$out/doc/"
|
|
||||||
|
|
||||||
mkdir -p "$out/target"
|
|
||||||
mv "$out/lib" "$out/target/release"
|
|
||||||
'';
|
|
||||||
```
|
|
||||||
|
|
||||||
In a similar fashion, you may utilize `stdenv.mkDerivation` and other Nixpkgs
|
|
||||||
builders to build your library from source, and copy the relevant files and Lua
|
|
||||||
plugin files in the `postInstall` phase. Do note, however, that you still need
|
|
||||||
to fetch the plugin sources somehow. npins is, once again, the recommended
|
|
||||||
option to fetch the plugin sources. Refer to the previous section on how to use
|
|
||||||
npins to add a new plugin.
|
|
||||||
|
|
||||||
Plugins built from source must go into the `flake/pkgs/by-name` overlay. It will
|
|
||||||
automatically create flake outputs for individual packages. Lastly, you must add
|
|
||||||
your package to the plugin builder (`pluginBuilders`) function manually in
|
|
||||||
`modules/wrapper/build/config.nix`. Once done, you may refer to your plugin as a
|
|
||||||
**string**.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
{
|
|
||||||
config.vim.startPlugins = ["blink-cmp"];
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Modular setup options {#sec-modular-setup-options}
|
|
||||||
|
|
||||||
Most plugins is initialized with a call to `require('plugin').setup({...})`.
|
|
||||||
|
|
||||||
We use a special function that lets you easily add support for such setup
|
|
||||||
options in a modular way: `mkPluginSetupOption`.
|
|
||||||
|
|
||||||
Once you have added the source of the plugin as shown above, you can define the
|
|
||||||
setup options like this:
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# in modules/.../your-plugin/your-plugin.nix
|
|
||||||
|
|
||||||
{lib, ...}:
|
|
||||||
let
|
|
||||||
inherit (lib.types) bool int;
|
|
||||||
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
||||||
in {
|
|
||||||
options.vim.your-plugin = {
|
|
||||||
setupOpts = mkPluginSetupOption "plugin name" {
|
|
||||||
enable_feature_a = mkOption {
|
|
||||||
type = bool;
|
|
||||||
default = false;
|
|
||||||
# ...
|
|
||||||
};
|
|
||||||
|
|
||||||
number_option = mkOption {
|
|
||||||
type = int;
|
|
||||||
default = 3;
|
|
||||||
# ...
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# in modules/.../your-plugin/config.nix
|
|
||||||
{lib, config, ...}:
|
|
||||||
let
|
|
||||||
cfg = config.vim.your-plugin;
|
|
||||||
in {
|
|
||||||
vim.luaConfigRC = lib.nvim.dag.entryAnywhere ''
|
|
||||||
require('plugin-name').setup(${lib.nvim.lua.toLuaObject cfg.setupOpts})
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
This above config will result in this Lua script:
|
|
||||||
|
|
||||||
```lua
|
|
||||||
require('plugin-name').setup({
|
|
||||||
enable_feature_a = false,
|
|
||||||
number_option = 3,
|
|
||||||
})
|
|
||||||
```
|
|
||||||
|
|
||||||
Now users can set any of the pre-defined option field, and can also add their
|
|
||||||
own fields!
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# in user's config
|
|
||||||
{
|
|
||||||
vim.your-plugin.setupOpts = {
|
|
||||||
enable_feature_a = true;
|
|
||||||
number_option = 4;
|
|
||||||
another_field = "hello";
|
|
||||||
size = { # nested fields work as well
|
|
||||||
top = 10;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Details of toLuaObject {#sec-details-of-toluaobject}
|
|
||||||
|
|
||||||
As you've seen above, `toLuaObject` is used to convert our nix attrSet
|
|
||||||
`cfg.setupOpts`, into a lua table. Here are some rules of the conversion:
|
|
||||||
|
|
||||||
1. Nix `null` converts to lua `nil`
|
|
||||||
2. Number and strings convert to their lua counterparts
|
|
||||||
3. Nix attribute sets (`{}`) and lists (`[]`) convert into Lua dictionaries and
|
|
||||||
tables respectively. Here is an example of Nix -> Lua conversion.
|
|
||||||
- `{foo = "bar"}` -> `{["foo"] = "bar"}`
|
|
||||||
- `["foo" "bar"]` -> `{"foo", "bar"}`
|
|
||||||
4. You can write raw Lua code using `lib.generators.mkLuaInline`. This function
|
|
||||||
is part of nixpkgs, and is accessible without relying on **nvf**'s extended
|
|
||||||
library.
|
|
||||||
- `mkLuaInline "function add(a, b) return a + b end"` will yield the
|
|
||||||
following result:
|
|
||||||
|
|
||||||
```nix
|
|
||||||
{
|
|
||||||
_type = "lua-inline";
|
|
||||||
expr = "function add(a, b) return a + b end";
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
The above expression will be interpreted as a Lua expression in the final
|
|
||||||
config. Without the `mkLuaInline` function, you will only receive a string
|
|
||||||
literal. You can use it to feed plugin configuration tables Lua functions
|
|
||||||
that return specific values as expected by the plugins.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
{
|
|
||||||
vim.your-plugin.setupOpts = {
|
|
||||||
on_init = lib.generators.mkLuaInline ''
|
|
||||||
function()
|
|
||||||
print('we can write lua!')
|
|
||||||
end
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Lazy plugins {#sec-lazy-plugins}
|
|
||||||
|
|
||||||
If the plugin can be lazy-loaded, `vim.lazy.plugins` should be used to add it.
|
|
||||||
Lazy plugins are managed by `lz.n`.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# in modules/.../your-plugin/config.nix
|
|
||||||
{config, ...}: let
|
|
||||||
cfg = config.vim.your-plugin;
|
|
||||||
in {
|
|
||||||
vim.lazy.plugins.your-plugin = {
|
|
||||||
# Instead of vim.startPlugins, use this:
|
|
||||||
package = "your-plugin";
|
|
||||||
|
|
||||||
# ıf your plugin uses the `require('your-plugin').setup{...}` pattern
|
|
||||||
setupModule = "your-plugin";
|
|
||||||
inherit (cfg) setupOpts;
|
|
||||||
|
|
||||||
# Events that trigger this plugin to be loaded
|
|
||||||
event = ["DirChanged"];
|
|
||||||
cmd = ["YourPluginCommand"];
|
|
||||||
|
|
||||||
# Plugin Keymaps
|
|
||||||
keys = [
|
|
||||||
# We'll cover this in detail in the 'keybinds' section
|
|
||||||
{
|
|
||||||
key = "<leader>d";
|
|
||||||
mode = "n";
|
|
||||||
action = ":YourPluginCommand";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
This results in the following lua code:
|
|
||||||
|
|
||||||
```lua
|
|
||||||
require('lz.n').load({
|
|
||||||
{
|
|
||||||
"name-of-your-plugin",
|
|
||||||
after = function()
|
|
||||||
require('your-plugin').setup({
|
|
||||||
--[[ your setupOpts ]]--
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
|
|
||||||
event = {"DirChanged"},
|
|
||||||
cmd = {"YourPluginCommand"},
|
|
||||||
keys = {
|
|
||||||
{"<leader>d", ":YourPluginCommand", mode = {"n"}},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
```
|
|
||||||
|
|
||||||
[`vim.lazy.plugins` spec]: https://notashelf.github.io/nvf/options.html#opt-vim.lazy.plugins
|
|
||||||
|
|
||||||
A full list of options can be found in the [`vim.lazy.plugins` spec] on the
|
|
||||||
rendered manual.
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
# Getting Started {#sec-contrib-getting-started}
|
|
||||||
|
|
||||||
You, naturally, would like to start by forking the repository to get started. If
|
|
||||||
you are new to Git and GitHub, do have a look at GitHub's
|
|
||||||
[Fork a repo guide](https://help.github.com/articles/fork-a-repo/) for
|
|
||||||
instructions on how you can do this. Once you have a fork of **nvf**, you should
|
|
||||||
create a separate branch based on the most recent `main` branch. Give your
|
|
||||||
branch a reasonably descriptive name (e.g. `feature/debugger` or
|
|
||||||
`fix/pesky-bug`) and you are ready to work on your changes
|
|
||||||
|
|
||||||
Implement your changes and commit them to the newly created branch and when you
|
|
||||||
are happy with the result, and positive that it fulfills our
|
|
||||||
[Contributing Guidelines](#sec-guidelines), push the branch to GitHub and
|
|
||||||
[create a pull request](https://help.github.com/articles/creating-a-pull-request).
|
|
||||||
The default pull request template available on the **nvf** repository will guide
|
|
||||||
you through the rest of the process, and we'll gently nudge you in the correct
|
|
||||||
direction if there are any mistakes.
|
|
||||||
|
|
@ -1,188 +0,0 @@
|
||||||
# Guidelines {#sec-guidelines}
|
|
||||||
|
|
||||||
If your contribution tightly follows the guidelines, then there is a good chance
|
|
||||||
it will be merged without too much trouble. Some of the guidelines will be
|
|
||||||
strictly enforced, others will remain as gentle nudges towards the correct
|
|
||||||
direction. As we have no automated system enforcing those guidelines, please try
|
|
||||||
to double check your changes before making your pull request in order to avoid
|
|
||||||
"faulty" code slipping by.
|
|
||||||
|
|
||||||
If you are uncertain how these rules affect the change you would like to make
|
|
||||||
then feel free to start a discussion in the
|
|
||||||
[discussions tab](https://github.com/NotAShelf/nvf/discussions) ideally (but not
|
|
||||||
necessarily) before you start developing.
|
|
||||||
|
|
||||||
## Adding Documentation {#sec-guidelines-documentation}
|
|
||||||
|
|
||||||
[Nixpkgs Flavoured Markdown]: https://github.com/NixOS/nixpkgs/blob/master/doc/README.md#syntax
|
|
||||||
|
|
||||||
Almost all changes warrant updates to the documentation: at the very least, you
|
|
||||||
must update the changelog. Both the manual and module options use
|
|
||||||
[Nixpkgs Flavoured Markdown].
|
|
||||||
|
|
||||||
The HTML version of this manual containing both the module option descriptions
|
|
||||||
and the documentation of **nvf** (such as this page) can be generated and opened
|
|
||||||
by typing the following in a shell within a clone of the **nvf** Git repository:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ nix build .#docs-html
|
|
||||||
$ xdg-open $PWD/result/share/doc/nvf/index.html
|
|
||||||
```
|
|
||||||
|
|
||||||
## Formatting Code {#sec-guidelines-formatting}
|
|
||||||
|
|
||||||
Make sure your code is formatted as described in
|
|
||||||
[code-style section](#sec-guidelines-code-style). To maintain consistency
|
|
||||||
throughout the project you are encouraged to browse through existing code and
|
|
||||||
adopt its style also in new code.
|
|
||||||
|
|
||||||
## Formatting Commits {#sec-guidelines-commit-message-style}
|
|
||||||
|
|
||||||
Similar to [code style guidelines](#sec-guidelines-code-style) we encourage a
|
|
||||||
consistent commit message format as described in
|
|
||||||
[commit style guidelines](#sec-guidelines-commit-style).
|
|
||||||
|
|
||||||
## Commit Style {#sec-guidelines-commit-style}
|
|
||||||
|
|
||||||
The commits in your pull request should be reasonably self-contained. Which
|
|
||||||
means each and every commit in a pull request should make sense both on its own
|
|
||||||
and in general context. That is, a second commit should not resolve an issue
|
|
||||||
that is introduced in an earlier commit. In particular, you will be asked to
|
|
||||||
amend any commit that introduces syntax errors or similar problems even if they
|
|
||||||
are fixed in a later commit.
|
|
||||||
|
|
||||||
The commit messages should follow the
|
|
||||||
[seven rules](https://chris.beams.io/posts/git-commit/#seven-rule), except for
|
|
||||||
"Capitalize the subject line". We also ask you to include the affected code
|
|
||||||
component or module in the first line. A commit message ideally, but not
|
|
||||||
necessarily, follow the given template from home-manager's own documentation
|
|
||||||
|
|
||||||
```
|
|
||||||
{component}: {description}
|
|
||||||
|
|
||||||
{long description}
|
|
||||||
```
|
|
||||||
|
|
||||||
where `{component}` refers to the code component (or module) your change
|
|
||||||
affects, `{description}` is a very brief description of your change, and
|
|
||||||
`{long description}` is an optional clarifying description. As a rare exception,
|
|
||||||
if there is no clear component, or your change affects many components, then the
|
|
||||||
`{component}` part is optional. See
|
|
||||||
[example commit message](#sec-guidelines-ex-commit-message) for a commit message
|
|
||||||
that fulfills these requirements.
|
|
||||||
|
|
||||||
## Example Commit {#sec-guidelines-ex-commit-message}
|
|
||||||
|
|
||||||
The commit
|
|
||||||
[69f8e47e9e74c8d3d060ca22e18246b7f7d988ef](https://github.com/nix-community/home-manager/commit/69f8e47e9e74c8d3d060ca22e18246b7f7d988ef)
|
|
||||||
in home-manager contains the following commit message.
|
|
||||||
|
|
||||||
```
|
|
||||||
starship: allow running in Emacs if vterm is used
|
|
||||||
|
|
||||||
The vterm buffer is backed by libvterm and can handle Starship prompts
|
|
||||||
without issues.
|
|
||||||
```
|
|
||||||
|
|
||||||
Similarly, if you are contributing to **nvf**, you would include the scope of
|
|
||||||
the commit followed by the description:
|
|
||||||
|
|
||||||
```
|
|
||||||
languages/ruby: init module
|
|
||||||
|
|
||||||
Adds a language module for Ruby, adds appropriate formatters and Treesitter grammars
|
|
||||||
```
|
|
||||||
|
|
||||||
Long description can be omitted if the change is too simple to warrant it. A
|
|
||||||
minor fix in spelling or a formatting change does not warrant long description,
|
|
||||||
however, a module addition or removal does as you would like to provide the
|
|
||||||
relevant context, i.e. the reasoning behind it, for your commit.
|
|
||||||
|
|
||||||
Finally, when adding a new module, say `modules/foo.nix`, we use the fixed
|
|
||||||
commit format `foo: add module`. You can, of course, still include a long
|
|
||||||
description if you wish.
|
|
||||||
|
|
||||||
In case of nested modules, i.e `modules/languages/java.nix` you are recommended
|
|
||||||
to contain the parent as well - for example `languages/java: some major change`.
|
|
||||||
|
|
||||||
## Code Style {#sec-guidelines-code-style}
|
|
||||||
|
|
||||||
### Treewide {#sec-code-style-treewide}
|
|
||||||
|
|
||||||
Keep lines at a reasonable width, ideally 80 characters or less. This also
|
|
||||||
applies to string literals and module descriptions and documentation.
|
|
||||||
|
|
||||||
### Nix {#sec-code-style-nix}
|
|
||||||
|
|
||||||
[alejandra]: https://github.com/kamadorueda/alejandra
|
|
||||||
|
|
||||||
**nvf** is formatted by the [alejandra] tool and the formatting is checked in
|
|
||||||
the pull request and push workflows. Run the `nix fmt` command inside the
|
|
||||||
project repository before submitting your pull request.
|
|
||||||
|
|
||||||
While Alejandra is mostly opinionated on how code looks after formatting,
|
|
||||||
certain changes are done at the user's discretion based on how the original code
|
|
||||||
was structured.
|
|
||||||
|
|
||||||
Please use one line code for attribute sets that contain only one subset. For
|
|
||||||
example:
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# parent modules should always be unfolded
|
|
||||||
# which means module = { value = ... } instead of module.value = { ... }
|
|
||||||
module = {
|
|
||||||
value = mkEnableOption "some description" // { default = true; }; # merges can be done inline where possible
|
|
||||||
|
|
||||||
# same as parent modules, unfold submodules
|
|
||||||
subModule = {
|
|
||||||
# this is an option that contains more than one nested value
|
|
||||||
# Note: try to be careful about the ordering of `mkOption` arguments.
|
|
||||||
# General rule of thumb is to order from least to most likely to change.
|
|
||||||
# This is, for most cases, type < default < description.
|
|
||||||
# Example, if present, would be between default and description
|
|
||||||
someOtherValue = mkOption {
|
|
||||||
type = lib.types.bool;
|
|
||||||
default = true;
|
|
||||||
description = "Some other description";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
If you move a line down after the merge operator, Alejandra will automatically
|
|
||||||
unfold the whole merged attrset for you, which we **do not** want.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
module = {
|
|
||||||
key = mkEnableOption "some description" // {
|
|
||||||
default = true; # we want this to be inline
|
|
||||||
}; # ...
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
For lists, it is mostly up to your own discretion how you want to format them,
|
|
||||||
but please try to unfold lists if they contain multiple items and especially if
|
|
||||||
they are to include comments.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# this is ok
|
|
||||||
acceptableList = [
|
|
||||||
item1 # comment
|
|
||||||
item2
|
|
||||||
item3 # some other comment
|
|
||||||
item4
|
|
||||||
];
|
|
||||||
|
|
||||||
# this is not ok
|
|
||||||
listToBeAvoided = [item1 item2 /* comment */ item3 item4];
|
|
||||||
|
|
||||||
# this is ok
|
|
||||||
acceptableList = [item1 item2];
|
|
||||||
|
|
||||||
# this is also ok if the list is expected to contain more elements
|
|
||||||
acceptableList= [
|
|
||||||
item1
|
|
||||||
item2
|
|
||||||
# more items if needed...
|
|
||||||
];
|
|
||||||
```
|
|
||||||
|
|
@ -1,97 +0,0 @@
|
||||||
# Keybinds {#sec-keybinds}
|
|
||||||
|
|
||||||
As of 0.4, there exists an API for writing your own keybinds and a couple of
|
|
||||||
useful utility functions are available in the
|
|
||||||
[extended standard library](https://github.com/NotAShelf/nvf/tree/main/lib). The
|
|
||||||
following section contains a general overview to how you may utilize said
|
|
||||||
functions.
|
|
||||||
|
|
||||||
## Custom Key Mappings Support for a Plugin {#sec-custom-key-mappings}
|
|
||||||
|
|
||||||
To set a mapping, you should define it in `vim.keymaps`.
|
|
||||||
|
|
||||||
An example, simple keybinding, can look like this:
|
|
||||||
|
|
||||||
```nix
|
|
||||||
{
|
|
||||||
vim.keymaps = [
|
|
||||||
{
|
|
||||||
key = "<leader>wq";
|
|
||||||
mode = ["n"];
|
|
||||||
action = ":wq<CR>";
|
|
||||||
silent = true;
|
|
||||||
desc = "Save file and quit";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
There are many settings available in the options. Please refer to the
|
|
||||||
[documentation](https://notashelf.github.io/nvf/options.html#opt-vim.keymaps) to
|
|
||||||
see a list of them.
|
|
||||||
|
|
||||||
**nvf** provides a helper function, so that you don't have to write the mapping
|
|
||||||
attribute sets every time:
|
|
||||||
|
|
||||||
- `mkKeymap`, which mimics neovim's `vim.keymap.set` function
|
|
||||||
|
|
||||||
You can read the source code of some modules to see them in action, but the
|
|
||||||
usage should look something like this:
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# plugindefinition.nix
|
|
||||||
{lib, ...}: let
|
|
||||||
inherit (lib.options) mkEnableOption;
|
|
||||||
inherit (lib.nvim.binds) mkMappingOption;
|
|
||||||
in {
|
|
||||||
options.vim.plugin = {
|
|
||||||
enable = mkEnableOption "Enable plugin";
|
|
||||||
|
|
||||||
# Mappings should always be inside an attrset called mappings
|
|
||||||
mappings = {
|
|
||||||
workspaceDiagnostics = mkMappingOption "Workspace diagnostics [trouble]" "<leader>lwd";
|
|
||||||
documentDiagnostics = mkMappingOption "Document diagnostics [trouble]" "<leader>ld";
|
|
||||||
lspReferences = mkMappingOption "LSP References [trouble]" "<leader>lr";
|
|
||||||
quickfix = mkMappingOption "QuickFix [trouble]" "<leader>xq";
|
|
||||||
locList = mkMappingOption "LOCList [trouble]" "<leader>xl";
|
|
||||||
symbols = mkMappingOption "Symbols [trouble]" "<leader>xs";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# config.nix
|
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
options,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
inherit (lib.modules) mkIf;
|
|
||||||
inherit (lib.nvim.binds) mkKeymap;
|
|
||||||
|
|
||||||
cfg = config.vim.plugin;
|
|
||||||
|
|
||||||
keys = cfg.mappings;
|
|
||||||
inherit (options.vim.lsp.trouble) mappings;
|
|
||||||
in {
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
vim.keymaps = [
|
|
||||||
(mkKeymap "n" keys.workspaceDiagnostics "<cmd>Trouble toggle diagnostics<CR>" {desc = mappings.workspaceDiagnostics.description;})
|
|
||||||
(mkKeymap "n" keys.documentDiagnostics "<cmd>Trouble toggle diagnostics filter.buf=0<CR>" {desc = mappings.documentDiagnostics.description;})
|
|
||||||
(mkKeymap "n" keys.lspReferences "<cmd>Trouble toggle lsp_references<CR>" {desc = mappings.lspReferences.description;})
|
|
||||||
(mkKeymap "n" keys.quickfix "<cmd>Trouble toggle quickfix<CR>" {desc = mappings.quickfix.description;})
|
|
||||||
(mkKeymap "n" keys.locList "<cmd>Trouble toggle loclist<CR>" {desc = mappings.locList.description;})
|
|
||||||
(mkKeymap "n" keys.symbols "<cmd>Trouble toggle symbols<CR>" {desc = mappings.symbols.description;})
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
::: {.note}
|
|
||||||
|
|
||||||
If you have come across a plugin that has an API that doesn't seem to easily
|
|
||||||
allow custom keybindings, don't be scared to implement a draft PR. We'll help
|
|
||||||
you get it done.
|
|
||||||
|
|
||||||
:::
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
# Testing Changes {#sec-testing-changes}
|
|
||||||
|
|
||||||
Once you have made your changes, you will need to test them thoroughly. If it is
|
|
||||||
a module, add your module option to `configuration.nix` (located in the root of
|
|
||||||
this project) inside `neovimConfiguration`. Enable it, and then run the maximal
|
|
||||||
configuration with `nix run .#maximal -Lv` to check for build errors. If neovim
|
|
||||||
opens in the current directory without any error messages (you can check the
|
|
||||||
output of `:messages` inside neovim to see if there are any errors), then your
|
|
||||||
changes are good to go. Open your pull request, and it will be reviewed as soon
|
|
||||||
as possible.
|
|
||||||
|
|
||||||
If it is not a new module, but a change to an existing one, then make sure the
|
|
||||||
module you have changed is enabled in the maximal configuration by editing
|
|
||||||
`configuration.nix`, and then run it with `nix run .#maximal -Lv`. Same
|
|
||||||
procedure as adding a new module will apply here.
|
|
||||||
|
|
@ -1,4 +1,18 @@
|
||||||
# Try it out {#ch-try-it-out}
|
# Introduction {#nvf-manual}
|
||||||
|
|
||||||
|
Version @NVF_VERSION@
|
||||||
|
|
||||||
|
## Preface {#ch-preface}
|
||||||
|
|
||||||
|
### What is nvf {#sec-what-is-it}
|
||||||
|
|
||||||
|
**nvf** is a highly modular, configurable, extensible and easy to use Neovim
|
||||||
|
configuration framework built and designed to be used with Nix. Boasting
|
||||||
|
flexibility, robustness and ease of use, this projecct allows you to configure a
|
||||||
|
fully featured Neovim instance with a few lines of Nix with lots of options for
|
||||||
|
advanced users as well.
|
||||||
|
|
||||||
|
## Try it out {#ch-try-it-out}
|
||||||
|
|
||||||
Thanks to the portability of Nix, you can try out nvf without actually
|
Thanks to the portability of Nix, you can try out nvf without actually
|
||||||
installing it to your machine. Below are the commands you may run to try out
|
installing it to your machine. Below are the commands you may run to try out
|
||||||
|
|
@ -29,10 +43,11 @@ $ nix run github:notashelf/nvf#maximal
|
||||||
|
|
||||||
### Available Configurations {#sec-available-configs}
|
### Available Configurations {#sec-available-configs}
|
||||||
|
|
||||||
::: {.info}
|
> [!NOTE]
|
||||||
|
> The below configurations are provided for demonstration purposes, and are
|
||||||
The below configurations are provided for demonstration purposes, and are
|
> **not** designed to be installed as is. You may refer to the installation
|
||||||
**not** designed to be installed as is. You may
|
> steps below and the helpful tips section for details on creating your own
|
||||||
|
> configurations.
|
||||||
|
|
||||||
#### Nix {#sec-configs-nix}
|
#### Nix {#sec-configs-nix}
|
||||||
|
|
||||||
|
|
@ -42,6 +57,7 @@ default package, you will build Neovim with this config.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ nix run github:notashelf/nvf#nix test.nix
|
$ nix run github:notashelf/nvf#nix test.nix
|
||||||
|
# => This will open a file called `test.nix` with Nix LSP and syntax highlighting
|
||||||
```
|
```
|
||||||
|
|
||||||
This command will start Neovim with some opinionated plugin configurations, and
|
This command will start Neovim with some opinionated plugin configurations, and
|
||||||
|
|
@ -57,16 +73,29 @@ mind, however, that this will pull a lot of dependencies.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ nix run github:notashelf/nvf#maximal -- test.nix
|
$ nix run github:notashelf/nvf#maximal -- test.nix
|
||||||
|
# => This will open a file called `test.nix` with a variety of plugins available
|
||||||
```
|
```
|
||||||
|
|
||||||
It uses the same configuration template with the [Nix](#sec-configs-nix)
|
It uses the same configuration template with the [Nix](#sec-configs-nix)
|
||||||
configuration, but supports many more languages, and enables more utility,
|
configuration, but supports many more languages, and enables more utility,
|
||||||
companion or fun plugins.
|
companion or fun plugins.
|
||||||
|
|
||||||
::: {.warning}
|
> [!WARNING]
|
||||||
|
> Running the maximal config will download _a lot_ of packages as it is
|
||||||
|
> downloading language servers, formatters, and more. If CPU time and bandwidth
|
||||||
|
> are concerns, please use the default package instead.
|
||||||
|
|
||||||
Running the maximal config will download _a lot_ of packages as it is
|
## Installing nvf {#ch-installation}
|
||||||
downloading language servers, formatters, and more. If CPU time and bandwidth
|
|
||||||
are concerns, please use the default package instead.
|
|
||||||
|
|
||||||
:::
|
[module installation section]: #ch-module-installation
|
||||||
|
|
||||||
|
There are multiple ways of installing nvf on your system. You may either choose
|
||||||
|
the standalone installation method, which does not depend on a module system and
|
||||||
|
may be done on any system that has the Nix package manager or the appropriate
|
||||||
|
modules for NixOS and home-manager as described in the
|
||||||
|
[module installation section].
|
||||||
|
|
||||||
|
```{=include=}
|
||||||
|
installation/custom-configuration.md
|
||||||
|
installation/modules.md
|
||||||
|
```
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
# Installing nvf {#ch-installation}
|
|
||||||
|
|
||||||
[module installation section]: #ch-module-installation
|
|
||||||
|
|
||||||
There are multiple ways of installing nvf on your system. You may either choose
|
|
||||||
the standalone installation method, which does not depend on a module system and
|
|
||||||
may be done on any system that has the Nix package manager or the appropriate
|
|
||||||
modules for NixOS and home-manager as described in the
|
|
||||||
[module installation section].
|
|
||||||
|
|
||||||
```{=include=} chapters
|
|
||||||
installation/custom-configuration.md
|
|
||||||
installation/modules.md
|
|
||||||
```
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
# nvf manual {#nvf-manual}
|
|
||||||
|
|
||||||
## Version @NVF_VERSION@
|
|
||||||
|
|
||||||
```{=include=} preface
|
|
||||||
preface.md
|
|
||||||
try-it-out.md
|
|
||||||
```
|
|
||||||
|
|
||||||
```{=include=} parts
|
|
||||||
installation.md
|
|
||||||
configuring.md
|
|
||||||
tips.md
|
|
||||||
```
|
|
||||||
|
|
||||||
```{=include=} chapters
|
|
||||||
hacking.md
|
|
||||||
```
|
|
||||||
|
|
||||||
```{=include=} appendix html:into-file=//quirks.html
|
|
||||||
quirks.md
|
|
||||||
```
|
|
||||||
|
|
||||||
```{=include=} appendix html:into-file=//options.html
|
|
||||||
options.md
|
|
||||||
```
|
|
||||||
|
|
||||||
```{=include=} appendix html:into-file=//release-notes.html
|
|
||||||
release-notes/release-notes.md
|
|
||||||
```
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
# nvf Configuration Options {#ch-options}
|
|
||||||
|
|
||||||
Below are the module options provided by nvf, in no particular order. Most
|
|
||||||
options will include useful comments, warnings or setup tips on how a module
|
|
||||||
option is meant to be used as well as examples in complex cases.
|
|
||||||
|
|
||||||
An offline version of this page is bundled with nvf as a part of the manpages
|
|
||||||
which you can access with `man 5 nvf`. Please let us know if you believe any of
|
|
||||||
the options below are missing useful examples.
|
|
||||||
|
|
||||||
<!--
|
|
||||||
In the manual, individual options may be referenced in Hyperlinks as follows:
|
|
||||||
[](#opt-vim.*) If changing the prefix here, do keep in mind the #opt- suffix will have
|
|
||||||
to be changed everywhere.
|
|
||||||
-->
|
|
||||||
|
|
||||||
```{=include=} options
|
|
||||||
id-prefix: opt-
|
|
||||||
list-id: nvf-options
|
|
||||||
source: @OPTIONS_JSON@
|
|
||||||
```
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
# Preface {#ch-preface}
|
|
||||||
|
|
||||||
## What is nvf {#sec-what-is-it}
|
|
||||||
|
|
||||||
nvf is a highly modular, configurable, extensible and easy to use Neovim
|
|
||||||
configuration in Nix. Designed for flexibility and ease of use, nvf allows you
|
|
||||||
to easily configure your fully featured Neovim instance with a few lines of Nix.
|
|
||||||
|
|
||||||
## Bugs & Suggestions {#sec-bugs-suggestions}
|
|
||||||
|
|
||||||
[issue tracker]: https://github.com/notashelf/nvf/issues
|
|
||||||
[discussions tab]: https://github.com/notashelf/nvf/discussions
|
|
||||||
[pull requests tab]: https://github.com/notashelf/nvf/pulls
|
|
||||||
|
|
||||||
If you notice any issues with nvf, or this documentation, then please consider
|
|
||||||
reporting them over at the [issue tracker]. Issues tab, in addition to the
|
|
||||||
[discussions tab] is a good place as any to request new features.
|
|
||||||
|
|
||||||
You may also consider submitting bugfixes, feature additions and upstreamed
|
|
||||||
changes that you think are critical over at the [pull requests tab].
|
|
||||||
|
|
@ -5,9 +5,41 @@ be it a result of generating Lua from Nix, or the state of packaging. This page,
|
||||||
in turn, will list any known modules or plugins that are known to misbehave, and
|
in turn, will list any known modules or plugins that are known to misbehave, and
|
||||||
possible workarounds that you may apply.
|
possible workarounds that you may apply.
|
||||||
|
|
||||||
<!-- If adding a new known quirk, please create a new page in quirks/ and include
|
## NodeJS {#ch-quirks-nodejs}
|
||||||
the name of the file here.-->
|
|
||||||
|
|
||||||
```{=include=} chapters
|
### eslint-plugin-prettier {#sec-eslint-plugin-prettier}
|
||||||
quirks/nodejs.md
|
|
||||||
```
|
When working with NodeJS, everything works as expected, but some projects have
|
||||||
|
settings that can fool nvf.
|
||||||
|
|
||||||
|
If [this plugin](https://github.com/prettier/eslint-plugin-prettier) or similar
|
||||||
|
is included, you might get a situation where your eslint configuration diagnoses
|
||||||
|
your formatting according to its own config (usually `.eslintrc.js`).
|
||||||
|
|
||||||
|
The issue there is your formatting is made via prettierd.
|
||||||
|
|
||||||
|
This results in auto-formatting relying on your prettier config, while your
|
||||||
|
eslint config diagnoses formatting
|
||||||
|
[which it's not supposed to](https://prettier.io/docs/en/comparison.html))
|
||||||
|
|
||||||
|
In the end, you get discrepancies between what your editor does and what it
|
||||||
|
wants.
|
||||||
|
|
||||||
|
Solutions are:
|
||||||
|
|
||||||
|
1. Don't add a formatting config to eslint, and separate prettier and eslint.
|
||||||
|
2. PR this repo to add an ESLint formatter and configure nvf to use it.
|
||||||
|
|
||||||
|
## Bugs & Suggestions {#ch-bugs-suggestions}
|
||||||
|
|
||||||
|
[issue tracker]: https://github.com/notashelf/nvf/issues
|
||||||
|
[discussions tab]: https://github.com/notashelf/nvf/discussions
|
||||||
|
[pull requests tab]: https://github.com/notashelf/nvf/pulls
|
||||||
|
|
||||||
|
Some quirks are not exactly quirks, but bugs in the module systeme. If you
|
||||||
|
notice any issues with nvf, or this documentation, then please consider
|
||||||
|
reporting them over at the [issue tracker]. Issues tab, in addition to the
|
||||||
|
[discussions tab] is a good place as any to request new features.
|
||||||
|
|
||||||
|
You may also consider submitting bugfixes, feature additions and upstreamed
|
||||||
|
changes that you think are critical over at the [pull requests tab].
|
||||||
|
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
# NodeJS {#ch-quirks-nodejs}
|
|
||||||
|
|
||||||
## eslint-plugin-prettier {#sec-eslint-plugin-prettier}
|
|
||||||
|
|
||||||
When working with NodeJS, everything works as expected, but some projects have
|
|
||||||
settings that can fool nvf.
|
|
||||||
|
|
||||||
If [this plugin](https://github.com/prettier/eslint-plugin-prettier) or similar
|
|
||||||
is included, you might get a situation where your eslint configuration diagnoses
|
|
||||||
your formatting according to its own config (usually `.eslintrc.js`).
|
|
||||||
|
|
||||||
The issue there is your formatting is made via prettierd.
|
|
||||||
|
|
||||||
This results in auto-formatting relying on your prettier config, while your
|
|
||||||
eslint config diagnoses formatting
|
|
||||||
[which it's not supposed to](https://prettier.io/docs/en/comparison.html))
|
|
||||||
|
|
||||||
In the end, you get discrepancies between what your editor does and what it
|
|
||||||
wants.
|
|
||||||
|
|
||||||
Solutions are:
|
|
||||||
|
|
||||||
1. Don't add a formatting config to eslint, and separate prettier and eslint.
|
|
||||||
2. PR this repo to add an ESLint formatter and configure nvf to use it.
|
|
||||||
15
docs/manual/release-notes.md
Normal file
15
docs/manual/release-notes.md
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
# Release Notes {#ch-release-notes}
|
||||||
|
|
||||||
|
This section lists the release notes for tagged version of **nvf** and the
|
||||||
|
current main current main branch
|
||||||
|
|
||||||
|
```{=include=} chapters
|
||||||
|
release-notes/rl-0.1.md
|
||||||
|
release-notes/rl-0.2.md
|
||||||
|
release-notes/rl-0.3.md
|
||||||
|
release-notes/rl-0.4.md
|
||||||
|
release-notes/rl-0.5.md
|
||||||
|
release-notes/rl-0.6.md
|
||||||
|
release-notes/rl-0.7.md
|
||||||
|
release-notes/rl-0.8.md
|
||||||
|
```
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Release 0.1 {#sec-release-0.1}
|
# Release 0.1 {#sec-release-0-1}
|
||||||
|
|
||||||
This is the current master branch and information here is not final. These are
|
This is the current master branch and information here is not final. These are
|
||||||
changes from the v0.1 tag.
|
changes from the v0.1 tag.
|
||||||
|
|
@ -7,7 +7,7 @@ Special thanks to [home-manager](https://github.com/nix-community/home-manager/)
|
||||||
for this release. Docs/manual generation, the new module evaluation system, and
|
for this release. Docs/manual generation, the new module evaluation system, and
|
||||||
DAG implementation are from them.
|
DAG implementation are from them.
|
||||||
|
|
||||||
## Changelog {#sec-release-0.1-changelog}
|
## Changelog {#sec-release-0-1-changelog}
|
||||||
|
|
||||||
[jordanisaacs](https://github.com/jordanisaacs):
|
[jordanisaacs](https://github.com/jordanisaacs):
|
||||||
|
|
||||||
|
|
@ -15,7 +15,7 @@ DAG implementation are from them.
|
||||||
longer defined. If you use hare and would like it added back, please file an
|
longer defined. If you use hare and would like it added back, please file an
|
||||||
issue.
|
issue.
|
||||||
|
|
||||||
- [](#opt-vim.startPlugins) & [](#opt-vim.optPlugins) are now an enum of
|
- {option}`vim.startPlugins` & {option} `vim-optPlugins` are now an enum of
|
||||||
`string` for options sourced from the flake inputs. Users can still provide
|
`string` for options sourced from the flake inputs. Users can still provide
|
||||||
vim plugin packages.
|
vim plugin packages.
|
||||||
|
|
||||||
|
|
@ -28,13 +28,13 @@ DAG implementation are from them.
|
||||||
[relevant discourse post]: https://discourse.nixos.org/t/psa-if-you-are-on-unstable-try-out-nvim-treesitter-withallgrammars/23321?u=snowytrees
|
[relevant discourse post]: https://discourse.nixos.org/t/psa-if-you-are-on-unstable-try-out-nvim-treesitter-withallgrammars/23321?u=snowytrees
|
||||||
|
|
||||||
- Treesitter grammars are now configurable with
|
- Treesitter grammars are now configurable with
|
||||||
[](#opt-vim.treesitter.grammars). Utilizes the nixpkgs `nvim-treesitter`
|
{option}`vim.treesitter.grammars`. Utilizes the nixpkgs `nvim-treesitter`
|
||||||
plugin rather than a custom input in order to take advantage of build support
|
plugin rather than a custom input in order to take advantage of build support
|
||||||
of pinned versions. See the [relevant discourse post] for more information.
|
of pinned versions. See the [relevant discourse post] for more information.
|
||||||
Packages can be found under the `vimPlugins.nvim-treesitter.builtGrammars`
|
Packages can be found under the `vimPlugins.nvim-treesitter.builtGrammars`
|
||||||
namespace.
|
namespace.
|
||||||
|
|
||||||
- `vim.configRC` and [](#opt-vim.luaConfigRC) are now of type DAG lines. This
|
- `vim.configRC` and {option}`vim.luaConfigRC` are now of type DAG lines. This
|
||||||
allows for ordering of the config. Usage is the same is in home-manager's
|
allows for ordering of the config. Usage is the same is in home-manager's
|
||||||
`home.activation` option.
|
`home.activation` option.
|
||||||
|
|
||||||
|
|
@ -44,5 +44,6 @@ vim.luaConfigRC = lib.nvim.dag.entryAnywhere "config here"
|
||||||
|
|
||||||
[MoritzBoehme](https://github.com/MoritzBoehme):
|
[MoritzBoehme](https://github.com/MoritzBoehme):
|
||||||
|
|
||||||
- `catppuccin` theme is now available as a neovim theme [](#opt-vim.theme.style)
|
- `catppuccin` theme is now available as a neovim theme
|
||||||
and Lualine theme [](#opt-vim.statusline.lualine.theme).
|
{option}`vim.theme.style` and Lualine theme
|
||||||
|
{option}`vim.statusline.lualine.theme`.
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
# Release 0.2 {#sec-release-0.2}
|
# Release 0.2 {#sec-release-0-2}
|
||||||
|
|
||||||
Release notes for release 0.2
|
Release notes for release 0.2
|
||||||
|
|
||||||
## Changelog {#sec-release-0.2-changelog}
|
## Changelog {#sec-release-0-2-changelog}
|
||||||
|
|
||||||
[notashelf](https://github.com/notashelf):
|
[notashelf](https://github.com/notashelf):
|
||||||
|
|
||||||
|
|
@ -10,55 +10,39 @@ Release notes for release 0.2
|
||||||
default, while `minimap.vim` is available with its code-minimap dependency.
|
default, while `minimap.vim` is available with its code-minimap dependency.
|
||||||
- A complementary plugin, `obsidian.nvim` and the Neovim alternative for Emacs'
|
- A complementary plugin, `obsidian.nvim` and the Neovim alternative for Emacs'
|
||||||
orgmode with `orgmode.nvim` have been added. Both will be disabled by default.
|
orgmode with `orgmode.nvim` have been added. Both will be disabled by default.
|
||||||
|
|
||||||
- Smooth scrolling for ANY movement command is now available with
|
- Smooth scrolling for ANY movement command is now available with
|
||||||
`cinnamon.nvim`
|
`cinnamon.nvim`
|
||||||
|
|
||||||
- You will now notice a dashboard on startup. This is provided by the
|
- You will now notice a dashboard on startup. This is provided by the
|
||||||
`alpha.nvim` plugin. You can use any of the three available dashboard plugins,
|
`alpha.nvim` plugin. You can use any of the three available dashboard plugins,
|
||||||
or disable them entirely.
|
or disable them entirely.
|
||||||
|
|
||||||
- There is now a scrollbar on active buffers, which can highlight errors by
|
- There is now a scrollbar on active buffers, which can highlight errors by
|
||||||
hooking to your LSPs. This is on by default, but can be toggled off under
|
hooking to your LSPs. This is on by default, but can be toggled off under
|
||||||
`vim.visuals` if seen necessary.
|
`vim.visuals` if seen necessary.
|
||||||
|
|
||||||
- Discord Rich Presence has been added through `presence.nvim` for those who
|
- Discord Rich Presence has been added through `presence.nvim` for those who
|
||||||
want to flex that they are using the _superior_ text editor.
|
want to flex that they are using the _superior_ text editor.
|
||||||
|
|
||||||
- An icon picker is now available with telescope integration. You can use
|
- An icon picker is now available with telescope integration. You can use
|
||||||
`:IconPickerInsert` or `:IconPickerYank` to add icons to your code.
|
`:IconPickerInsert` or `:IconPickerYank` to add icons to your code.
|
||||||
|
|
||||||
- A general-purpose cheatsheet has been added through `cheatsheet.nvim`. Forget
|
- A general-purpose cheatsheet has been added through `cheatsheet.nvim`. Forget
|
||||||
no longer!
|
no longer!
|
||||||
|
|
||||||
- `ccc.nvim` has been added to the default plugins to allow picking colors with
|
- `ccc.nvim` has been added to the default plugins to allow picking colors with
|
||||||
ease.
|
ease.
|
||||||
|
|
||||||
- Most UI components of Neovim have been replaced through the help of
|
- Most UI components of Neovim have been replaced through the help of
|
||||||
`noice.nvim`. There are also notifications and custom UI elements available
|
`noice.nvim`. There are also notifications and custom UI elements available
|
||||||
for Neovim messages and prompts.
|
for Neovim messages and prompts.
|
||||||
|
|
||||||
- A (floating by default) terminal has been added through `toggleterm.nvim`.
|
- A (floating by default) terminal has been added through `toggleterm.nvim`.
|
||||||
|
|
||||||
- Harness the power of ethical (`tabnine.nvim`) and not-so-ethical
|
- Harness the power of ethical (`tabnine.nvim`) and not-so-ethical
|
||||||
(`copilot.lua`) AI by those new assistant plugins. Both are off by default,
|
(`copilot.lua`) AI by those new assistant plugins. Both are off by default,
|
||||||
TabNine needs to be wrapped before it's working.
|
TabNine needs to be wrapped before it's working.
|
||||||
|
|
||||||
- Experimental mouse gestures have been added through `gesture.nvim`. See plugin
|
- Experimental mouse gestures have been added through `gesture.nvim`. See plugin
|
||||||
page and the relevant module for more details on how to use.
|
page and the relevant module for more details on how to use.
|
||||||
|
|
||||||
- Re-open last visited buffers via `nvim-session-manager`. Disabled by default
|
- Re-open last visited buffers via `nvim-session-manager`. Disabled by default
|
||||||
as deleting buffers seems to be problematic at the moment.
|
as deleting buffers seems to be problematic at the moment.
|
||||||
|
|
||||||
- Most of NvimTree's configuration options have been changed with some options
|
- Most of NvimTree's configuration options have been changed with some options
|
||||||
being toggled to off by default.
|
being toggled to off by default.
|
||||||
|
|
||||||
- Lualine had its configuration simplified and style toned down. Less color,
|
- Lualine had its configuration simplified and style toned down. Less color,
|
||||||
more info.
|
more info.
|
||||||
|
|
||||||
- Modules where multiple plugin configurations were in the same directory have
|
- Modules where multiple plugin configurations were in the same directory have
|
||||||
been simplified. Each plugin inside a single module gets its directory to be
|
been simplified. Each plugin inside a single module gets its directory to be
|
||||||
imported.
|
imported.
|
||||||
|
|
||||||
- Separate config options with the same parent attribute have been merged into
|
- Separate config options with the same parent attribute have been merged into
|
||||||
one for simplicity.
|
one for simplicity.
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Release 0.3 {#sec-release-0.3}
|
# Release 0.3 {#sec-release-0-3}
|
||||||
|
|
||||||
Release 0.3 had to come out before I wanted it to due to Neovim 0.9 dropping
|
Release 0.3 had to come out before I wanted it to due to Neovim 0.9 dropping
|
||||||
into nixpkgs-unstable. The Treesitter changes have prompted a Treesitter rework,
|
into nixpkgs-unstable. The Treesitter changes have prompted a Treesitter rework,
|
||||||
|
|
@ -7,7 +7,7 @@ those are downstreamed from the original repository. The feature requests that
|
||||||
was originally planned for 0.3 have been moved to 0.4, which should come out
|
was originally planned for 0.3 have been moved to 0.4, which should come out
|
||||||
soon.
|
soon.
|
||||||
|
|
||||||
## Changelog {#sec-release-0.3-changelog}
|
## Changelog {#sec-release-0-3-changelog}
|
||||||
|
|
||||||
- We have transitioned to flake-parts, from flake-utils to extend the
|
- We have transitioned to flake-parts, from flake-utils to extend the
|
||||||
flexibility of this flake. This means the flake structure is different than
|
flexibility of this flake. This means the flake structure is different than
|
||||||
|
|
@ -39,7 +39,7 @@ soon.
|
||||||
[discourse]: https://discourse.nixos.org/t/psa-if-you-are-on-unstable-try-out-nvim-treesitter-withallgrammars/23321?u=snowytrees
|
[discourse]: https://discourse.nixos.org/t/psa-if-you-are-on-unstable-try-out-nvim-treesitter-withallgrammars/23321?u=snowytrees
|
||||||
|
|
||||||
- Treesitter grammars are now configurable with
|
- Treesitter grammars are now configurable with
|
||||||
[](#opt-vim.treesitter.grammars). Utilizes the nixpkgs `nvim-treesitter`
|
{option}`vim.treesitter.grammars`. Utilizes the nixpkgs `nvim-treesitter`
|
||||||
plugin rather than a custom input in order to take advantage of build support
|
plugin rather than a custom input in order to take advantage of build support
|
||||||
of pinned versions. See [discourse] for more information. Packages can be
|
of pinned versions. See [discourse] for more information. Packages can be
|
||||||
found under the `pkgs.vimPlugins.nvim-treesitter.builtGrammars` attribute.
|
found under the `pkgs.vimPlugins.nvim-treesitter.builtGrammars` attribute.
|
||||||
|
|
@ -50,20 +50,20 @@ soon.
|
||||||
|
|
||||||
- A new section has been added for language support: `vim.languages.<language>`.
|
- A new section has been added for language support: `vim.languages.<language>`.
|
||||||
|
|
||||||
- The options `enableLSP` [](#opt-vim.languages.enableTreesitter), etc. will
|
- The options `enableLSP` {option}`vim.languages.enableTreesitter`, etc. will
|
||||||
enable the respective section for all languages that have been enabled.
|
enable the respective section for all languages that have been enabled.
|
||||||
- All LSP languages have been moved here
|
- All LSP languages have been moved here
|
||||||
- `plantuml` and `markdown` have been moved here
|
- `plantuml` and `markdown` have been moved here
|
||||||
- A new section has been added for `html`. The old
|
- A new section has been added for `html`. The old
|
||||||
`vim.treesitter.autotagHtml` can be found at
|
`vim.treesitter.autotagHtml` can be found at
|
||||||
[](#opt-vim.languages.html.treesitter.autotagHtml).
|
{option}`vim.languages.html.treesitter.autotagHtml`.
|
||||||
|
|
||||||
- `vim.git.gitsigns.codeActions` has been added, allowing you to turn on
|
- `vim.git.gitsigns.codeActions` has been added, allowing you to turn on
|
||||||
Gitsigns' code actions.
|
Gitsigns' code actions.
|
||||||
|
|
||||||
- Removed the plugins document in the docs. Was too unwieldy to keep updated.
|
- Removed the plugins document in the docs. Was too unwieldy to keep updated.
|
||||||
|
|
||||||
- `vim.visual.lspkind` has been moved to [](#opt-vim.lsp.lspkind.enable)
|
- `vim.visual.lspkind` has been moved to {option}`vim.lsp.lspkind.enable`
|
||||||
|
|
||||||
- Improved handling of completion formatting. When setting
|
- Improved handling of completion formatting. When setting
|
||||||
`vim.autocomplete.sources`, can also include optional menu mapping. And can
|
`vim.autocomplete.sources`, can also include optional menu mapping. And can
|
||||||
|
|
@ -74,7 +74,7 @@ soon.
|
||||||
by using `null` rather than `""` now.
|
by using `null` rather than `""` now.
|
||||||
|
|
||||||
- Transparency has been made optional and has been disabled by default.
|
- Transparency has been made optional and has been disabled by default.
|
||||||
[](#opt-vim.theme.transparent) option can be used to enable or disable
|
{option}`vim.theme.transparent` option can be used to enable or disable
|
||||||
transparency for your configuration.
|
transparency for your configuration.
|
||||||
|
|
||||||
- Fixed deprecated configuration method for Tokyonight, and added new style
|
- Fixed deprecated configuration method for Tokyonight, and added new style
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Release 0.4 {#sec-release-0.4}
|
# Release 0.4 {#sec-release-0-4}
|
||||||
|
|
||||||
Following the release of v0.3, I have decided to release v0.4 with a massive new
|
Following the release of v0.3, I have decided to release v0.4 with a massive new
|
||||||
change: customizable keybinds. As of the 0.4 release, keybinds will no longer be
|
change: customizable keybinds. As of the 0.4 release, keybinds will no longer be
|
||||||
|
|
@ -12,7 +12,7 @@ as `lazygit` integration and the new experimental Lua loader of Neovim 0.9
|
||||||
thanks to our awesome contributors who made this update possible during my
|
thanks to our awesome contributors who made this update possible during my
|
||||||
absence.
|
absence.
|
||||||
|
|
||||||
## Changelog {#sec-release-0.4-changelog}
|
## Changelog {#sec-release-0-4-changelog}
|
||||||
|
|
||||||
[n3oney](https://github.com/n3oney):
|
[n3oney](https://github.com/n3oney):
|
||||||
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
# Release 0.5 {#sec-release-0.5}
|
# Release 0.5 {#sec-release-0-5}
|
||||||
|
|
||||||
Release notes for release 0.5
|
## Changelog {#sec-release-0-5-changelog}
|
||||||
|
|
||||||
## Changelog {#sec-release-0.5-changelog}
|
|
||||||
|
|
||||||
[vagahbond](https://github.com/vagahbond):
|
[vagahbond](https://github.com/vagahbond):
|
||||||
|
|
||||||
|
|
@ -17,14 +15,14 @@ Release notes for release 0.5
|
||||||
- Fixed a bug where cmp's close and scrollDocs mappings wasn't working
|
- Fixed a bug where cmp's close and scrollDocs mappings wasn't working
|
||||||
|
|
||||||
- Streamlined and simplified extra plugin API with the addition of
|
- Streamlined and simplified extra plugin API with the addition of
|
||||||
[](#opt-vim.extraPlugins)
|
{option}`vim.extraPlugins`
|
||||||
|
|
||||||
- Allow using command names in place of LSP packages to avoid automatic
|
- Allow using command names in place of LSP packages to avoid automatic
|
||||||
installation
|
installation
|
||||||
|
|
||||||
- Add lua LSP and Treesitter support, and neodev.nvim plugin support
|
- Add lua LSP and Treesitter support, and neodev.nvim plugin support
|
||||||
|
|
||||||
- Add [](#opt-vim.lsp.mappings.toggleFormatOnSave) keybind
|
- Add {option}`vim.lsp.mappings.toggleFormatOnSave` keybind
|
||||||
|
|
||||||
[amanse](https://github.com/amanse):
|
[amanse](https://github.com/amanse):
|
||||||
|
|
||||||
|
|
@ -52,10 +50,10 @@ Release notes for release 0.5
|
||||||
|
|
||||||
- Added GitHub Copilot to nvim-cmp completion sources.
|
- Added GitHub Copilot to nvim-cmp completion sources.
|
||||||
|
|
||||||
- Added [](#opt-vim.ui.borders.enable) for global and individual plugin border
|
- Added {option}`vim.ui.borders.enable` for global and individual plugin border
|
||||||
configuration.
|
configuration.
|
||||||
|
|
||||||
- LSP integrated breadcrumbs with [](#opt-vim.ui.breadcrumbs.enable) through
|
- LSP integrated breadcrumbs with {option}`vim.ui.breadcrumbs.enable` through
|
||||||
nvim-navic
|
nvim-navic
|
||||||
|
|
||||||
- LSP navigation helper with nvim-navbuddy, depends on nvim-navic (automatically
|
- LSP navigation helper with nvim-navbuddy, depends on nvim-navic (automatically
|
||||||
|
|
@ -66,14 +64,14 @@ Release notes for release 0.5
|
||||||
- Fixed mismatching Zig language description
|
- Fixed mismatching Zig language description
|
||||||
|
|
||||||
- Added support for `statix` and `deadnix` through
|
- Added support for `statix` and `deadnix` through
|
||||||
[](#opt-vim.languages.nix.extraDiagnostics.types)
|
{option}`vim.languages.nix.extraDiagnostics.types`
|
||||||
|
|
||||||
- Added `lsp_lines` plugin for showing diagnostic messages
|
- Added `lsp_lines` plugin for showing diagnostic messages
|
||||||
|
|
||||||
- Added a configuration option for choosing the leader key
|
- Added a configuration option for choosing the leader key
|
||||||
|
|
||||||
- The package used for neovim is now customizable by the user, using
|
- The package used for neovim is now customizable by the user, using
|
||||||
[](#opt-vim.package). For best results, always use an unwrapped package
|
{option}`vim.package`. For best results, always use an unwrapped package
|
||||||
|
|
||||||
- Added highlight-undo plugin for highlighting undo/redo targets
|
- Added highlight-undo plugin for highlighting undo/redo targets
|
||||||
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Release 0.6 {#sec-release-0.6}
|
# Release 0.6 {#sec-release-0-6}
|
||||||
|
|
||||||
Release notes for release 0.6
|
Release notes for release 0.6
|
||||||
|
|
||||||
|
|
@ -41,14 +41,14 @@ end
|
||||||
vim.api.nvim_set_keymap('n', '<leader>a', ':lua camelToSnake()<CR>', { noremap = true, silent = true })
|
vim.api.nvim_set_keymap('n', '<leader>a', ':lua camelToSnake()<CR>', { noremap = true, silent = true })
|
||||||
```
|
```
|
||||||
|
|
||||||
## Changelog {#sec-release-0.6-changelog}
|
## Changelog {#sec-release-0-6-changelog}
|
||||||
|
|
||||||
[ksonj](https://github.com/ksonj):
|
[ksonj](https://github.com/ksonj):
|
||||||
|
|
||||||
- Added Terraform language support.
|
- Added Terraform language support.
|
||||||
|
|
||||||
- Added `ChatGPT.nvim`, which can be enabled with
|
- Added `ChatGPT.nvim`, which can be enabled with
|
||||||
[](#opt-vim.assistant.chatgpt.enable). Do keep in mind that this option
|
{option}`vim.assistant.chatgpt.enable`. Do keep in mind that this option
|
||||||
requires `OPENAI_API_KEY` environment variable to be set.
|
requires `OPENAI_API_KEY` environment variable to be set.
|
||||||
|
|
||||||
[donnerinoern](https://github.com/donnerinoern):
|
[donnerinoern](https://github.com/donnerinoern):
|
||||||
|
|
@ -95,7 +95,7 @@ vim.api.nvim_set_keymap('n', '<leader>a', ':lua camelToSnake()<CR>', { noremap =
|
||||||
and also has been removed.
|
and also has been removed.
|
||||||
|
|
||||||
- `which-key.nvim` categories can now be customized through
|
- `which-key.nvim` categories can now be customized through
|
||||||
[vim.binds.whichKey.register](#opt-vim.binds.whichKey.register)
|
[vim.binds.whichKey.register](./options.html#option-vim-binds-whichKey-register)
|
||||||
|
|
||||||
- Added `magick` to `vim.luaPackages` for `image.nvim`.
|
- Added `magick` to `vim.luaPackages` for `image.nvim`.
|
||||||
|
|
||||||
|
|
@ -125,10 +125,10 @@ vim.api.nvim_set_keymap('n', '<leader>a', ':lua camelToSnake()<CR>', { noremap =
|
||||||
|
|
||||||
- Lualine module now allows customizing `always_divide_middle`, `ignore_focus`
|
- Lualine module now allows customizing `always_divide_middle`, `ignore_focus`
|
||||||
and `disabled_filetypes` through the new options:
|
and `disabled_filetypes` through the new options:
|
||||||
[vim.statusline.lualine.alwaysDivideMiddle](#opt-vim.statusline.lualine.alwaysDivideMiddle),
|
[vim.statusline.lualine.alwaysDivideMiddle](./options.html#option-vim-statusline-lualine-alwaysDivideMiddle),
|
||||||
[vim.statusline.lualine.ignoreFocus](#opt-vim.statusline.lualine.ignoreFocus)
|
[vim.statusline.lualine.ignoreFocus](./options.html#option-vim-statusline-lualine-ignoreFocus)
|
||||||
and
|
and
|
||||||
[vim.statusline.lualine.disabledFiletypes](#opt-vim.statusline.lualine.disabledFiletypes).
|
[vim.statusline.lualine.disabledFiletypes](./options.html#option-vim-statusline-lualine-disabledFiletypes).
|
||||||
|
|
||||||
- Updated all plugin inputs to their latest versions (**21.04.2024**) - this
|
- Updated all plugin inputs to their latest versions (**21.04.2024**) - this
|
||||||
brought minor color changes to the Catppuccin theme.
|
brought minor color changes to the Catppuccin theme.
|
||||||
|
|
@ -159,10 +159,10 @@ vim.api.nvim_set_keymap('n', '<leader>a', ':lua camelToSnake()<CR>', { noremap =
|
||||||
arguments to take `luaBefore`, `luaConfig` and `luaAfter` as strings, which
|
arguments to take `luaBefore`, `luaConfig` and `luaAfter` as strings, which
|
||||||
are then concatted inside a lua block.
|
are then concatted inside a lua block.
|
||||||
|
|
||||||
- Added [](#opt-vim.luaConfigPre) and [](#opt-vim.luaConfigPost) for inserting
|
- Added {option}`vim.luaConfigPre` and {option} `vim-luaConfigPost` for
|
||||||
verbatim Lua configuration before and after the resolved Lua DAG respectively.
|
inserting verbatim Lua configuration before and after the resolved Lua DAG
|
||||||
Both of those options take strings as the type, so you may read the contents
|
respectively. Both of those options take strings as the type, so you may read
|
||||||
of a Lua file from a given path.
|
the contents of a Lua file from a given path.
|
||||||
|
|
||||||
- Added `vim.spellchecking.ignoredFiletypes` and
|
- Added `vim.spellchecking.ignoredFiletypes` and
|
||||||
`vim.spellChecking.programmingWordlist.enable` for ignoring certain filetypes
|
`vim.spellChecking.programmingWordlist.enable` for ignoring certain filetypes
|
||||||
|
|
@ -172,12 +172,12 @@ vim.api.nvim_set_keymap('n', '<leader>a', ':lua camelToSnake()<CR>', { noremap =
|
||||||
- Exposed `withRuby`, `withNodeJs`, `withPython3`, and `python3Packages` from
|
- Exposed `withRuby`, `withNodeJs`, `withPython3`, and `python3Packages` from
|
||||||
the `makeNeovimConfig` function under their respective options.
|
the `makeNeovimConfig` function under their respective options.
|
||||||
|
|
||||||
- Added [](#opt-vim.extraPackages) for appending additional packages to the
|
- Added {option}`vim.extraPackages` for appending additional packages to the
|
||||||
wrapper PATH, making said packages available while inside the Neovim session.
|
wrapper PATH, making said packages available while inside the Neovim session.
|
||||||
|
|
||||||
- Made Treesitter options configurable, and moved treesitter-context to
|
- Made Treesitter options configurable, and moved treesitter-context to
|
||||||
`setupOpts` while it is enabled.
|
`setupOpts` while it is enabled.
|
||||||
|
|
||||||
- Added [](#opt-vim.notify.nvim-notify.setupOpts.render) which takes either a
|
- Added {option}`vim.notify.nvim-notify.setupOpts.render` which takes either a
|
||||||
string of enum, or a Lua function. The default is "compact", but you may
|
string of enum, or a Lua function. The default is "compact", but you may
|
||||||
change it according to nvim-notify documentation.
|
change it according to nvim-notify documentation.
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Release 0.7 {#sec-release-0.7}
|
# Release 0.7 {#sec-release-0-7}
|
||||||
|
|
||||||
Release notes for release 0.7
|
Release notes for release 0.7
|
||||||
|
|
||||||
|
|
@ -98,7 +98,7 @@ options that were under `vim` as convenient shorthands for `vim.o.*` options.
|
||||||
|
|
||||||
::: {.warning}
|
::: {.warning}
|
||||||
|
|
||||||
As v0.7 features the addition of [](#opt-vim.options), those options are now
|
As v0.7 features the addition of {option}`vim.options`, those options are now
|
||||||
considered as deprecated. You should migrate to the appropriate options in the
|
considered as deprecated. You should migrate to the appropriate options in the
|
||||||
`vim.options` submodule.
|
`vim.options` submodule.
|
||||||
|
|
||||||
|
|
@ -108,14 +108,14 @@ The changes are, in no particular order:
|
||||||
|
|
||||||
- `colourTerm`, `mouseSupport`, `cmdHeight`, `updateTime`, `mapTime`,
|
- `colourTerm`, `mouseSupport`, `cmdHeight`, `updateTime`, `mapTime`,
|
||||||
`cursorlineOpt`, `splitBelow`, `splitRight`, `autoIndent` and `wordWrap` have
|
`cursorlineOpt`, `splitBelow`, `splitRight`, `autoIndent` and `wordWrap` have
|
||||||
been mapped to their [](#opt-vim.options) equivalents. Please see the module
|
been mapped to their {option}`vim.options` equivalents. Please see the module
|
||||||
definition for the updated options.
|
definition for the updated options.
|
||||||
|
|
||||||
- `tabWidth` has been **removed** as it lead to confusing behaviour. You can
|
- `tabWidth` has been **removed** as it lead to confusing behaviour. You can
|
||||||
replicate the same functionality by setting `shiftwidth`, `tabstop` and
|
replicate the same functionality by setting `shiftwidth`, `tabstop` and
|
||||||
`softtabstop` under `vim.options` as you see fit.
|
`softtabstop` under `vim.options` as you see fit.
|
||||||
|
|
||||||
## Changelog {#sec-release-0.7-changelog}
|
## Changelog {#sec-release-0-7-changelog}
|
||||||
|
|
||||||
[ItsSorae](https://github.com/ItsSorae):
|
[ItsSorae](https://github.com/ItsSorae):
|
||||||
|
|
||||||
|
|
@ -125,7 +125,7 @@ The changes are, in no particular order:
|
||||||
[frothymarrow](https://github.com/frothymarrow):
|
[frothymarrow](https://github.com/frothymarrow):
|
||||||
|
|
||||||
- Modified type for
|
- Modified type for
|
||||||
[](#opt-vim.visuals.fidget-nvim.setupOpts.progress.display.overrides) from
|
{option}`vim.visuals.fidget-nvim.setupOpts.progress.display.overrides` from
|
||||||
`anything` to a `submodule` for better type checking.
|
`anything` to a `submodule` for better type checking.
|
||||||
|
|
||||||
- Fix null `vim.lsp.mappings` generating an error and not being filtered out.
|
- Fix null `vim.lsp.mappings` generating an error and not being filtered out.
|
||||||
|
|
@ -134,7 +134,7 @@ The changes are, in no particular order:
|
||||||
group for `Normal`, `NormalFloat`, `LineNr`, `SignColumn` and optionally
|
group for `Normal`, `NormalFloat`, `LineNr`, `SignColumn` and optionally
|
||||||
`NvimTreeNormal` to `none`.
|
`NvimTreeNormal` to `none`.
|
||||||
|
|
||||||
- Fix [](#opt-vim.ui.smartcolumn.setupOpts.custom_colorcolumn) using the wrong
|
- Fix {option}`vim.ui.smartcolumn.setupOpts.custom_colorcolumn` using the wrong
|
||||||
type `int` instead of the expected type `string`.
|
type `int` instead of the expected type `string`.
|
||||||
|
|
||||||
[horriblename](https://github.com/horriblename):
|
[horriblename](https://github.com/horriblename):
|
||||||
|
|
@ -170,7 +170,7 @@ The changes are, in no particular order:
|
||||||
|
|
||||||
- Add [ocaml-lsp] support
|
- Add [ocaml-lsp] support
|
||||||
|
|
||||||
- Fix misspelled "Emacs"
|
- Fix "Emac" typo
|
||||||
|
|
||||||
- Add [new-file-template.nvim] to automatically fill new file contents using
|
- Add [new-file-template.nvim] to automatically fill new file contents using
|
||||||
templates
|
templates
|
||||||
|
|
@ -216,18 +216,18 @@ The changes are, in no particular order:
|
||||||
|
|
||||||
- Remove `autopairs.type`, and rename `autopairs.enable` to
|
- Remove `autopairs.type`, and rename `autopairs.enable` to
|
||||||
`autopairs.nvim-autopairs.enable`. The new
|
`autopairs.nvim-autopairs.enable`. The new
|
||||||
[](#opt-vim.autopairs.nvim-autopairs.enable) supports `setupOpts` format by
|
{option}`vim.autopairs.nvim-autopairs.enable` supports `setupOpts` format by
|
||||||
default.
|
default.
|
||||||
|
|
||||||
- Refactor of `nvim-cmp` and completion related modules
|
- Refactor of `nvim-cmp` and completion related modules
|
||||||
|
|
||||||
- Remove `autocomplete.type` in favor of per-plugin enable options such as
|
- Remove `autocomplete.type` in favor of per-plugin enable options such as
|
||||||
[](#opt-vim.autocomplete.nvim-cmp.enable).
|
{option}`vim.autocomplete.nvim-cmp.enable`.
|
||||||
- Deprecate legacy Vimsnip in favor of Luasnip, and integrate
|
- Deprecate legacy Vimsnip in favor of Luasnip, and integrate
|
||||||
friendly-snippets for bundled snippets. [](#opt-vim.snippets.luasnip.enable)
|
friendly-snippets for bundled snippets.
|
||||||
can be used to toggle Luasnip.
|
{option}`vim.snippets.luasnip.enable` can be used to toggle Luasnip.
|
||||||
- Add sorting function options for completion sources under
|
- Add sorting function options for completion sources under
|
||||||
[](#opt-vim.autocomplete.nvim-cmp.setupOpts.sorting.comparators)
|
{option}`vim.autocomplete.nvim-cmp.setupOpts.sorting.comparators`
|
||||||
|
|
||||||
- Add C# support under `vim.languages.csharp`, with support for both
|
- Add C# support under `vim.languages.csharp`, with support for both
|
||||||
omnisharp-roslyn and csharp-language-server.
|
omnisharp-roslyn and csharp-language-server.
|
||||||
|
|
@ -297,12 +297,12 @@ The changes are, in no particular order:
|
||||||
Lualine. Only `vim.ui.breadcrumbs.lualine.winbar` is supported for the time
|
Lualine. Only `vim.ui.breadcrumbs.lualine.winbar` is supported for the time
|
||||||
being.
|
being.
|
||||||
|
|
||||||
- [](#opt-vim.ui.breadcrumbs.lualine.winbar.enable) has been added to allow
|
- {option}`vim.ui.breadcrumbs.lualine.winbar.enable` has been added to allow
|
||||||
controlling the default behaviour of the `nvim-navic` component on Lualine,
|
controlling the default behaviour of the `nvim-navic` component on Lualine,
|
||||||
which used to occupy `winbar.lualine_c` as long as breadcrumbs are enabled.
|
which used to occupy `winbar.lualine_c` as long as breadcrumbs are enabled.
|
||||||
- `vim.ui.breadcrumbs.alwaysRender` has been renamed to
|
- `vim.ui.breadcrumbs.alwaysRender` has been renamed to
|
||||||
[](#opt-vim.ui.breadcrumbs.lualine.winbar.alwaysRender) to be conform to the
|
{option}`vim.ui.breadcrumbs.lualine.winbar.alwaysRender` to be conform to
|
||||||
new format.
|
the new format.
|
||||||
|
|
||||||
- Add [basedpyright](https://github.com/detachhead/basedpyright) as a Python LSP
|
- Add [basedpyright](https://github.com/detachhead/basedpyright) as a Python LSP
|
||||||
server and make it default.
|
server and make it default.
|
||||||
|
|
@ -310,10 +310,10 @@ The changes are, in no particular order:
|
||||||
- Add [python-lsp-server](https://github.com/python-lsp/python-lsp-server) as an
|
- Add [python-lsp-server](https://github.com/python-lsp/python-lsp-server) as an
|
||||||
additional Python LSP server.
|
additional Python LSP server.
|
||||||
|
|
||||||
- Add [](#opt-vim.options) to set `vim.o` values in in your nvf configuration
|
- Add {option}`vim.options` to set `vim.o` values in in your nvf configuration
|
||||||
without using additional Lua. See option documentation for more details.
|
without using additional Lua. See option documentation for more details.
|
||||||
|
|
||||||
- Add [](#opt-vim.dashboard.dashboard-nvim.setupOpts) to allow user
|
- Add {option}`vim.dashboard.dashboard-nvim.setupOpts` to allow user
|
||||||
configuration for [dashboard.nvim](https://github.com/nvimdev/dashboard-nvim)
|
configuration for [dashboard.nvim](https://github.com/nvimdev/dashboard-nvim)
|
||||||
|
|
||||||
- Update `lualine.nvim` input and add missing themes:
|
- Update `lualine.nvim` input and add missing themes:
|
||||||
|
|
@ -321,7 +321,7 @@ The changes are, in no particular order:
|
||||||
- Adds `ayu`, `gruvbox_dark`, `iceberg`, `moonfly`, `onedark`,
|
- Adds `ayu`, `gruvbox_dark`, `iceberg`, `moonfly`, `onedark`,
|
||||||
`powerline_dark` and `solarized_light` themes.
|
`powerline_dark` and `solarized_light` themes.
|
||||||
|
|
||||||
- Add [](#opt-vim.spellcheck.extraSpellWords) to allow adding arbitrary
|
- Add {option}`vim.spellcheck.extraSpellWords` to allow adding arbitrary
|
||||||
spellfiles to Neovim's runtime with ease.
|
spellfiles to Neovim's runtime with ease.
|
||||||
|
|
||||||
- Add combined nvf configuration (`config.vim`) into the final package's
|
- Add combined nvf configuration (`config.vim`) into the final package's
|
||||||
|
|
@ -375,9 +375,9 @@ The changes are, in no particular order:
|
||||||
[nezia1](https://github.com/nezia1):
|
[nezia1](https://github.com/nezia1):
|
||||||
|
|
||||||
- Add [biome](https://github.com/biomejs/biome) support for Typescript, CSS and
|
- Add [biome](https://github.com/biomejs/biome) support for Typescript, CSS and
|
||||||
Svelte. Enable them via [](#opt-vim.languages.ts.format.type),
|
Svelte. Enable them via {option}`vim.languages.ts.format.type`,
|
||||||
[](#opt-vim.languages.css.format.type) and
|
{option}`vim.languages.css.format.type` and
|
||||||
[](#opt-vim.languages.svelte.format.type) respectively.
|
{option}`vim.languages.svelte.format.type` respectively.
|
||||||
- Replace [nixpkgs-fmt](https://github.com/nix-community/nixpkgs-fmt) with
|
- Replace [nixpkgs-fmt](https://github.com/nix-community/nixpkgs-fmt) with
|
||||||
[nixfmt](https://github.com/NixOS/nixfmt) (nixfmt-rfc-style).
|
[nixfmt](https://github.com/NixOS/nixfmt) (nixfmt-rfc-style).
|
||||||
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Release 0.8 {#sec-release-0.8}
|
# Release 0.8 {#sec-release-0-8}
|
||||||
|
|
||||||
## Breaking changes
|
## Breaking changes
|
||||||
|
|
||||||
|
|
@ -21,13 +21,19 @@
|
||||||
|
|
||||||
- `vim.useSystemClipboard` has been deprecated as a part of removing most
|
- `vim.useSystemClipboard` has been deprecated as a part of removing most
|
||||||
top-level convenience options, and should instead be configured in the new
|
top-level convenience options, and should instead be configured in the new
|
||||||
module interface. You may set [](#opt-vim.clipboard.registers) appropriately
|
module interface. You may set {option}`vim.clipboard.registers` appropriately
|
||||||
to configure Neovim to use the system clipboard.
|
to configure Neovim to use the system clipboard.
|
||||||
|
|
||||||
- Changed which-key group used for gitsigns from `<leader>g` to `<leader>h` to
|
- Changed which-key group used for gitsigns from `<leader>g` to `<leader>h` to
|
||||||
align with the "hunks" themed mapping and avoid conflict with the new [neogit]
|
align with the "hunks" themed mapping and avoid conflict with the new [neogit]
|
||||||
group.
|
group.
|
||||||
|
|
||||||
|
- LSP keybinds and related plugin integrations are now attached in an LspAttach
|
||||||
|
autocmd event. If you were calling `default_on_attach()` in your LSP setup you
|
||||||
|
can remove them now.
|
||||||
|
|
||||||
|
## Changelog {#sec-release-0-8-changelog}
|
||||||
|
|
||||||
[NotAShelf](https://github.com/notashelf):
|
[NotAShelf](https://github.com/notashelf):
|
||||||
|
|
||||||
[typst-preview.nvim]: https://github.com/chomosuke/typst-preview.nvim
|
[typst-preview.nvim]: https://github.com/chomosuke/typst-preview.nvim
|
||||||
|
|
@ -48,16 +54,16 @@
|
||||||
- Add [render-markdown.nvim] under
|
- Add [render-markdown.nvim] under
|
||||||
`languages.markdown.extensions.render-markdown-nvim`.
|
`languages.markdown.extensions.render-markdown-nvim`.
|
||||||
|
|
||||||
- Implement [](#opt-vim.git.gitsigns.setupOpts) for user-specified setup table
|
- Implement {option}`vim.git.gitsigns.setupOpts` for user-specified setup table
|
||||||
in gitsigns configuration.
|
in gitsigns configuration.
|
||||||
|
|
||||||
- [](#opt-vim.options.mouse) no longer compares values to an enum of available
|
- {option}`vim.options.mouse` no longer compares values to an enum of available
|
||||||
mouse modes. This means you can provide any string without the module system
|
mouse modes. This means you can provide any string without the module system
|
||||||
warning you that it is invalid. Do keep in mind that this value is no longer
|
warning you that it is invalid. Do keep in mind that this value is no longer
|
||||||
checked, so you will be responsible for ensuring its validity.
|
checked, so you will be responsible for ensuring its validity.
|
||||||
|
|
||||||
- Deprecate `vim.enableEditorconfig` in favor of
|
- Deprecate `vim.enableEditorconfig` in favor of
|
||||||
[](#opt-vim.globals.editorconfig).
|
{option}`vim.globals.editorconfig`.
|
||||||
|
|
||||||
- Deprecate rnix-lsp as it has been abandoned and archived upstream.
|
- Deprecate rnix-lsp as it has been abandoned and archived upstream.
|
||||||
|
|
||||||
|
|
@ -66,10 +72,9 @@
|
||||||
your Editorconfig configuration, or use an autocommand to set indentation
|
your Editorconfig configuration, or use an autocommand to set indentation
|
||||||
values for buffers with the Nix filetype.
|
values for buffers with the Nix filetype.
|
||||||
|
|
||||||
- Add [](#opt-vim.lsp.lightbulb.autocmd.enable) for manually managing the
|
- Add {option}`vim.lsp.lightbulb.autocmd.enable` for manually managing the
|
||||||
previously managed lightbulb autocommand.
|
previously managed lightbulb autocommand.
|
||||||
|
- A warning will occur if {option} vim-lsp-lightbulb-autocmd-enable) and
|
||||||
- A warning will occur if [](#opt-vim.lsp.lightbulb.autocmd.enable) and
|
|
||||||
`vim.lsp.lightbulb.setupOpts.autocmd.enabled` are both set at the same time.
|
`vim.lsp.lightbulb.setupOpts.autocmd.enabled` are both set at the same time.
|
||||||
Pick only one.
|
Pick only one.
|
||||||
|
|
||||||
|
|
@ -80,7 +85,7 @@
|
||||||
|
|
||||||
- Add [yazi.nvim] as a companion plugin for Yazi, the terminal file manager.
|
- Add [yazi.nvim] as a companion plugin for Yazi, the terminal file manager.
|
||||||
|
|
||||||
- Add [](#opt-vim.autocmds) and [](#opt-vim.augroups) to allow declaring
|
- Add {option}`vim.autocmds` and {option}`vim-augroups` to allow declaring
|
||||||
autocommands via Nix.
|
autocommands via Nix.
|
||||||
|
|
||||||
- Fix plugin `setupOpts` for yanky.nvim and assert if shada is configured as a
|
- Fix plugin `setupOpts` for yanky.nvim and assert if shada is configured as a
|
||||||
|
|
@ -102,7 +107,7 @@
|
||||||
`vim.utility.oil-nvim`.
|
`vim.utility.oil-nvim`.
|
||||||
- Add `vim.diagnostics` to interact with Neovim's diagnostics module. Available
|
- Add `vim.diagnostics` to interact with Neovim's diagnostics module. Available
|
||||||
options for `vim.diagnostic.config()` can now be customized through the
|
options for `vim.diagnostic.config()` can now be customized through the
|
||||||
[](#opt-vim.diagnostics.config) in nvf.
|
{option}`vim.diagnostics.config` in nvf.
|
||||||
|
|
||||||
- Add `vim.clipboard` module for easily managing Neovim clipboard providers and
|
- Add `vim.clipboard` module for easily managing Neovim clipboard providers and
|
||||||
relevant packages in a simple UI.
|
relevant packages in a simple UI.
|
||||||
|
|
@ -111,6 +116,14 @@
|
||||||
- Add [hunk.nvim], Neovim plugin & tool for splitting diffs in Neovim. Available
|
- Add [hunk.nvim], Neovim plugin & tool for splitting diffs in Neovim. Available
|
||||||
as `vim.git.hunk-nvim`
|
as `vim.git.hunk-nvim`
|
||||||
|
|
||||||
|
- Move `crates.nvim` into `languages.rust.extensions and support` `setupOpts`
|
||||||
|
for the plugin. Deprecates the top level "crates" option in `languages.rust`.
|
||||||
|
|
||||||
|
[sjcobb2022](https://github.com/sjcobb2022):
|
||||||
|
|
||||||
|
- Migrate all current lsp configurations to `vim.lsp.server` and remove internal
|
||||||
|
dependency on `nvim-lspconfig`
|
||||||
|
|
||||||
[amadaluzia](https://github.com/amadaluzia):
|
[amadaluzia](https://github.com/amadaluzia):
|
||||||
|
|
||||||
[haskell-tools.nvim]: https://github.com/MrcJkb/haskell-tools.nvim
|
[haskell-tools.nvim]: https://github.com/MrcJkb/haskell-tools.nvim
|
||||||
|
|
@ -130,6 +143,11 @@
|
||||||
- Moved code setting `additionalRuntimePaths` and `enableLuaLoader` out of
|
- Moved code setting `additionalRuntimePaths` and `enableLuaLoader` out of
|
||||||
`luaConfigPre`'s default to prevent being overridden
|
`luaConfigPre`'s default to prevent being overridden
|
||||||
- Use conform over custom autocmds for LSP format on save
|
- Use conform over custom autocmds for LSP format on save
|
||||||
|
- Move LSP keybinds and other related plugin integrations into an LspAttach
|
||||||
|
event.
|
||||||
|
- Allow multiple formatters in language modules.
|
||||||
|
- Fixed `prettier` in astro and svelte, and removed `prettierd` due to high
|
||||||
|
complexity that would be needed to support it.
|
||||||
|
|
||||||
[diniamo](https://github.com/diniamo):
|
[diniamo](https://github.com/diniamo):
|
||||||
|
|
||||||
|
|
@ -191,7 +209,7 @@
|
||||||
- Add [fzf-lua](https://github.com/ibhagwan/fzf-lua) in `vim.fzf-lua`
|
- Add [fzf-lua](https://github.com/ibhagwan/fzf-lua) in `vim.fzf-lua`
|
||||||
- Add [rainbow-delimiters](https://github.com/HiPhish/rainbow-delimiters.nvim)
|
- Add [rainbow-delimiters](https://github.com/HiPhish/rainbow-delimiters.nvim)
|
||||||
in `vim.visuals.rainbow-delimiters`
|
in `vim.visuals.rainbow-delimiters`
|
||||||
- Add options to define highlights under [](#opt-vim.highlight)
|
- Add options to define highlights under {option}`vim.highlight`
|
||||||
|
|
||||||
[kaktu5](https://github.com/kaktu5):
|
[kaktu5](https://github.com/kaktu5):
|
||||||
|
|
||||||
|
|
@ -207,8 +225,8 @@
|
||||||
|
|
||||||
[thamenato](https://github.com/thamenato):
|
[thamenato](https://github.com/thamenato):
|
||||||
|
|
||||||
[ruff]: (https://github.com/astral-sh/ruff)
|
[ruff]: https://github.com/astral-sh/ruff
|
||||||
[cue]: (https://cuelang.org/)
|
[cue]: https://cuelang.org/
|
||||||
|
|
||||||
- Add [ruff] as a formatter option in `vim.languages.python.format.type`.
|
- Add [ruff] as a formatter option in `vim.languages.python.format.type`.
|
||||||
- Add [cue] support under `vim.languages.cue`.
|
- Add [cue] support under `vim.languages.cue`.
|
||||||
|
|
@ -284,6 +302,13 @@
|
||||||
- Fix [blink.cmp] breaking when built-in sources were modified.
|
- Fix [blink.cmp] breaking when built-in sources were modified.
|
||||||
- Fix [conform.nvim] not allowing disabling formatting on and after save. Use
|
- Fix [conform.nvim] not allowing disabling formatting on and after save. Use
|
||||||
`null` value to disable them if conform is enabled.
|
`null` value to disable them if conform is enabled.
|
||||||
|
- Add [markdown-oxide](https://github.com/Feel-ix-343/markdown-oxide) option to
|
||||||
|
markdown language module.
|
||||||
|
- Fix Helm-YAML language module integration. YAML diagnostics will now remain in
|
||||||
|
`helmfile`s when both are enabled.
|
||||||
|
- Fix YAML language module not activating LSP keybinds if the Helm language
|
||||||
|
module was also enabled.
|
||||||
|
- Fix `json` language module (default) language server not activating.
|
||||||
|
|
||||||
[TheColorman](https://github.com/TheColorman):
|
[TheColorman](https://github.com/TheColorman):
|
||||||
|
|
||||||
|
|
@ -319,6 +344,7 @@
|
||||||
- Add global function `nvf_lint` under
|
- Add global function `nvf_lint` under
|
||||||
`vim.diagnostics.nvim-lint.lint_function`.
|
`vim.diagnostics.nvim-lint.lint_function`.
|
||||||
- Deprecate `vim.scrollOffset` in favor of `vim.options.scrolloff`.
|
- Deprecate `vim.scrollOffset` in favor of `vim.options.scrolloff`.
|
||||||
|
- Fix `svelte-language-server` not reloading .js/.ts files on change.
|
||||||
|
|
||||||
[Sc3l3t0n](https://github.com/Sc3l3t0n):
|
[Sc3l3t0n](https://github.com/Sc3l3t0n):
|
||||||
|
|
||||||
|
|
@ -381,7 +407,7 @@
|
||||||
|
|
||||||
[aionoid](https://github.com/aionoid):
|
[aionoid](https://github.com/aionoid):
|
||||||
|
|
||||||
[avante-nvim]: https://github.com/yetone/avante.nvim
|
[avante.nvim]: https://github.com/yetone/avante.nvim
|
||||||
|
|
||||||
- Fix [render-markdown.nvim] file_types option type to list, to accept merging.
|
- Fix [render-markdown.nvim] file_types option type to list, to accept merging.
|
||||||
- Add [avante.nvim] plugin under `vim.assistant.avante-nvim`.
|
- Add [avante.nvim] plugin under `vim.assistant.avante-nvim`.
|
||||||
|
|
@ -389,9 +415,12 @@
|
||||||
[poz](https://poz.pet):
|
[poz](https://poz.pet):
|
||||||
|
|
||||||
[everforest]: https://github.com/sainnhe/everforest
|
[everforest]: https://github.com/sainnhe/everforest
|
||||||
|
[oil]: https://github.com/stevearc/oil.nvim
|
||||||
|
[oil-git-status]: https://github.com/refractalize/oil-git-status.nvim
|
||||||
|
|
||||||
- Fix gitsigns null-ls issue.
|
- Fix gitsigns null-ls issue.
|
||||||
- Add [everforest] theme support.
|
- Add [everforest] theme support.
|
||||||
|
- Add [oil-git-status] support to [oil] module.
|
||||||
|
|
||||||
[Haskex](https://github.com/haskex):
|
[Haskex](https://github.com/haskex):
|
||||||
|
|
||||||
|
|
@ -479,13 +508,8 @@
|
||||||
|
|
||||||
- fix broken `neorg` grammars
|
- fix broken `neorg` grammars
|
||||||
- remove obsolete warning in the `otter` module
|
- remove obsolete warning in the `otter` module
|
||||||
|
- add mainProgram attribute to vala language server wrapper
|
||||||
[Cool-Game-Dev](https://github.com/Cool-Game-Dev):
|
- fix `crates-nvim`'s completions by using the in-program lsp
|
||||||
|
|
||||||
[nvim-biscuits]: https://github.com/code-biscuits/nvim-biscuits
|
|
||||||
|
|
||||||
- Add [nvim-biscuits] to show block context. Available at
|
|
||||||
`vim.utility.nvim-biscuits`.
|
|
||||||
|
|
||||||
[JManch](https://github.com/JManch):
|
[JManch](https://github.com/JManch):
|
||||||
|
|
||||||
|
|
@ -493,6 +517,56 @@
|
||||||
`autocomplete.nvim-cmp.enable` was disabled and
|
`autocomplete.nvim-cmp.enable` was disabled and
|
||||||
`autocomplete.nvim-cmp.sources` had not been modified.
|
`autocomplete.nvim-cmp.sources` had not been modified.
|
||||||
|
|
||||||
|
[Poseidon](https://github.com/poseidon-rises):
|
||||||
|
|
||||||
|
[nvim-biscuits]: https://github.com/code-biscuits/nvim-biscuits
|
||||||
|
[just-lsp]: https://github.com/terror/just-lsp
|
||||||
|
[roslyn-ls]: https://github.com/dotnet/vscode-csharp
|
||||||
|
[jsonls]: https://github.com/microsoft/vscode/tree/1.101.2/extensions/json-language-features/server
|
||||||
|
[jsonfmt]: https://github.com/caarlos0/jsonfmt
|
||||||
|
[superhtml]: https://github.com/kristoff-it/superhtml
|
||||||
|
[htmlHINT]: https://github.com/htmlhint/HTMLHint
|
||||||
|
[qmk-nvim]: https://github.com/codethread/qmk.nvim
|
||||||
|
[qmlls]: https://doc.qt.io/qt-6/qtqml-tooling-qmlls.html
|
||||||
|
[qmlformat]: https://doc.qt.io/qt-6/qtqml-tooling-qmlformat.html
|
||||||
|
|
||||||
|
- Add [nvim-biscuits] support under `vim.utility.nvim-biscuits`.
|
||||||
|
- Add just support under `vim.languages.just` using [just-lsp].
|
||||||
|
- Add [roslyn-ls] to the `vim.languages.csharp` module.
|
||||||
|
- Add JSON support under `vim.languages.json` using [jsonls] and [jsonfmt].
|
||||||
|
- Add advanced HTML support under `vim.languages.html` using [superhtml] and
|
||||||
|
[htmlHINT].
|
||||||
|
- Add QMK support under `vim.utility.qmk-nvim` via [qmk-nvim].
|
||||||
|
- Add QML support under `vim.languages.qml` using [qmlls] and [qmlformat].
|
||||||
|
|
||||||
|
[Morsicus](https://github.com/Morsicus):
|
||||||
|
|
||||||
|
- Add [EEx Treesitter Grammar](https://github.com/connorlay/tree-sitter-eex) for
|
||||||
|
Elixir
|
||||||
|
- Add
|
||||||
|
[HEEx Treesitter Grammar](https://github.com/phoenixframework/tree-sitter-heex)
|
||||||
|
for Elixir
|
||||||
|
|
||||||
|
[diced](https://github.com/diced):
|
||||||
|
|
||||||
|
- Fixed `typescript` treesitter grammar not being included by default.
|
||||||
|
|
||||||
|
[valterschutz](https://github.com/valterschutz):
|
||||||
|
|
||||||
|
[ruff]: https://github.com/astral-sh/ruff
|
||||||
|
|
||||||
|
- Add [ruff-fix] as a formatter option in `vim.languages.python.format.type`.
|
||||||
|
|
||||||
|
[gmvar](https://github.com/gmvar):
|
||||||
|
|
||||||
|
[harper-ls]: https://github.com/Automattic/harper
|
||||||
|
|
||||||
|
- Add [harper-ls] to the `vim.lsp` module.
|
||||||
|
|
||||||
|
[derethil](https://github.com/derethil):
|
||||||
|
|
||||||
|
- Fix `vim.lazy.plugins.<name>.enabled` Lua evaluation.
|
||||||
|
|
||||||
[Jules](https://github.com/jules-sommer):
|
[Jules](https://github.com/jules-sommer):
|
||||||
|
|
||||||
[nvim-highlight-colors]: https://github.com/brenoprata10/nvim-highlight-colors
|
[nvim-highlight-colors]: https://github.com/brenoprata10/nvim-highlight-colors
|
||||||
|
|
@ -511,11 +585,38 @@
|
||||||
- Add inline typst concealing support under `vim.languages.typst` using
|
- Add inline typst concealing support under `vim.languages.typst` using
|
||||||
[typst-concealer].
|
[typst-concealer].
|
||||||
|
|
||||||
|
[KrappRamiro](https://github.com/KrappRamiro):
|
||||||
|
|
||||||
|
[phaazon/hop.nvim]: https://github.com/hadronized/hop.nvim
|
||||||
|
[smoka7/hop.nvim]: https://github.com/smoka7/hop.nvim
|
||||||
|
|
||||||
|
- Migrate [phaazon/hop.nvim] to [smoka7/hop.nvim]
|
||||||
|
|
||||||
|
[simon-wg](https://github.com/simon-wg):
|
||||||
|
|
||||||
|
- Update `python` language module to use correct lsp binary.
|
||||||
|
- Fix `python` pyright and basedpyright language servers not using default on
|
||||||
|
attach behavior.
|
||||||
|
|
||||||
|
[critical](https://github.com/critical):
|
||||||
|
|
||||||
|
[mellow.nvim]: https://github.com/mellow-theme/mellow.nvim
|
||||||
|
|
||||||
|
- Add [mellow.nvim] plugin for vim and lualine theme support
|
||||||
|
|
||||||
|
[valyntyler](https://github.com/valyntyler):
|
||||||
|
|
||||||
|
[emmet-ls]: https://github.com/aca/emmet-ls
|
||||||
|
|
||||||
|
- Enable `languages.ts.format` for `.js` files
|
||||||
|
- Add [emmet-ls] to `html.lsp.servers`
|
||||||
|
|
||||||
[axelbdt](https://github.com/axelbdt):
|
[axelbdt](https://github.com/axelbdt):
|
||||||
|
|
||||||
[neocodeium]: https://github.com/monkoose/neocodeium
|
[neocodeium]: https://github.com/monkoose/neocodeium
|
||||||
|
|
||||||
- Add [neocodeium] plugin in `vim.assistant.neocodeium` with `enable`, `setupOpts` and `keymaps`
|
- Add [neocodeium] plugin in `vim.assistant.neocodeium` with `enable`,
|
||||||
|
`setupOpts` and `keymaps`
|
||||||
|
|
||||||
[JudahZF](https://github.com/JudahZF):
|
[JudahZF](https://github.com/JudahZF):
|
||||||
|
|
||||||
|
|
@ -6,7 +6,7 @@ documentation, configuring **nvf** with pure Lua and using custom plugin sources
|
||||||
in **nvf** in this section. For general configuration tips, please see previous
|
in **nvf** in this section. For general configuration tips, please see previous
|
||||||
chapters.
|
chapters.
|
||||||
|
|
||||||
```{=include=} chapters
|
```{=include=}
|
||||||
tips/debugging-nvf.md
|
tips/debugging-nvf.md
|
||||||
tips/offline-docs.md
|
tips/offline-docs.md
|
||||||
tips/pure-lua-config.md
|
tips/pure-lua-config.md
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ startup.
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
[`vim.extraPlugins`]: https://notashelf.github.io/nvf/options.html#opt-vim.extraPlugins
|
[`vim.extraPlugins`]: ./options.html#option-vim-extraPlugins
|
||||||
|
|
||||||
This will fetch aerial.nvim from nixpkgs, and add it to Neovim's runtime path to
|
This will fetch aerial.nvim from nixpkgs, and add it to Neovim's runtime path to
|
||||||
be loaded manually. Although for plugins that require manual setup, you are
|
be loaded manually. Although for plugins that require manual setup, you are
|
||||||
|
|
@ -43,7 +43,7 @@ encouraged to use [`vim.extraPlugins`].
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
[custom plugins section]: https://notashelf.github.io/nvf/index.xhtml#ch-custom-plugins
|
[custom plugins section]: ./configuring.html#ch-custom-plugins
|
||||||
|
|
||||||
More details on the extraPlugins API is documented in the
|
More details on the extraPlugins API is documented in the
|
||||||
[custom plugins section].
|
[custom plugins section].
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ manner.
|
||||||
This will add the `nvim` directory, or rather, the _store path_ that will be
|
This will add the `nvim` directory, or rather, the _store path_ that will be
|
||||||
realised after your flake gets copied to the Nix store, to Neovim's runtime
|
realised after your flake gets copied to the Nix store, to Neovim's runtime
|
||||||
directory. You may now create a `lua/myconfig` directory within this nvim
|
directory. You may now create a `lua/myconfig` directory within this nvim
|
||||||
directory, and call it with [](#opt-vim.luaConfigRC).
|
directory, and call it with {option}`vim.luaConfigRC`.
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
|
|
@ -90,7 +90,7 @@ vim.keymap.set("n", " ", "<Nop>", { silent = true, remap = false })
|
||||||
vim.g.mapleader = " "
|
vim.g.mapleader = " "
|
||||||
```
|
```
|
||||||
|
|
||||||
The following Nix configuration via [](#opt-vim.luaConfigRC) will allow loading
|
The following Nix configuration via {option}`vim.luaConfigRC` will allow loading
|
||||||
this
|
this
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
|
|
@ -105,7 +105,7 @@ this
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
[DAG system]: https://notashelf.github.io/nvf/index.xhtml#ch-using-dags
|
[DAG system]: ./configuring.html#ch-using-dags
|
||||||
|
|
||||||
After you load your custom configuration, you may use an `init.lua` located in
|
After you load your custom configuration, you may use an `init.lua` located in
|
||||||
your custom configuration directory to configure Neovim exactly as you would
|
your custom configuration directory to configure Neovim exactly as you would
|
||||||
|
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
# Release Notes {#ch-release-notes}
|
|
||||||
|
|
||||||
This section lists the release notes for tagged version of **nvf** and the
|
|
||||||
current main current main branch
|
|
||||||
|
|
||||||
```{=include=} chapters
|
|
||||||
rl-0.1.md
|
|
||||||
rl-0.2.md
|
|
||||||
rl-0.3.md
|
|
||||||
rl-0.4.md
|
|
||||||
rl-0.5.md
|
|
||||||
rl-0.6.md
|
|
||||||
rl-0.7.md
|
|
||||||
```
|
|
||||||
43
flake.lock
generated
43
flake.lock
generated
|
|
@ -51,13 +51,47 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"ndg": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": "nixpkgs"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1765435293,
|
||||||
|
"narHash": "sha256-HRp4g6qBCb8vpJ17s2FacMRXRszM73uBiR56aILMELA=",
|
||||||
|
"owner": "feel-co",
|
||||||
|
"repo": "ndg",
|
||||||
|
"rev": "65bf834b332d5f8b28d95ea14c7974be7c272971",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "feel-co",
|
||||||
|
"repo": "ndg",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1761880412,
|
"lastModified": 1764242076,
|
||||||
"narHash": "sha256-QoJjGd4NstnyOG4mm4KXF+weBzA2AH/7gn1Pmpfcb0A=",
|
"narHash": "sha256-sKoIWfnijJ0+9e4wRvIgm/HgE27bzwQxcEmo2J/gNpI=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "2fad6eac6077f03fe109c4d4eb171cf96791faa4",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1764081664,
|
||||||
|
"narHash": "sha256-sUoHmPr/EwXzRMpv1u/kH+dXuvJEyyF2Q7muE+t0EU4=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "a7fc11be66bdfb5cdde611ee5ce381c183da8386",
|
"rev": "dc205f7b4fdb04c8b7877b43edb7b73be7730081",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -72,7 +106,8 @@
|
||||||
"flake-compat": "flake-compat",
|
"flake-compat": "flake-compat",
|
||||||
"flake-parts": "flake-parts",
|
"flake-parts": "flake-parts",
|
||||||
"mnw": "mnw",
|
"mnw": "mnw",
|
||||||
"nixpkgs": "nixpkgs",
|
"ndg": "ndg",
|
||||||
|
"nixpkgs": "nixpkgs_2",
|
||||||
"systems": "systems"
|
"systems": "systems"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -105,5 +105,8 @@
|
||||||
|
|
||||||
# Alternate neovim-wrapper
|
# Alternate neovim-wrapper
|
||||||
mnw.url = "github:Gerg-L/mnw";
|
mnw.url = "github:Gerg-L/mnw";
|
||||||
|
|
||||||
|
# Alternative documentation generator
|
||||||
|
ndg.url = "github:feel-co/ndg";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
self',
|
self',
|
||||||
inputs',
|
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
devShells = {
|
devShells = {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
lib,
|
||||||
pins,
|
pins,
|
||||||
openssl,
|
openssl,
|
||||||
pkg-config,
|
pkg-config,
|
||||||
|
|
@ -11,6 +12,8 @@
|
||||||
}: let
|
}: let
|
||||||
# From npins
|
# From npins
|
||||||
pin = pins.avante-nvim;
|
pin = pins.avante-nvim;
|
||||||
|
|
||||||
|
pname = "avante-nvim-lib";
|
||||||
version = pin.branch;
|
version = pin.branch;
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
inherit (pin.repository) owner repo;
|
inherit (pin.repository) owner repo;
|
||||||
|
|
@ -19,8 +22,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
avante-nvim-lib = rustPlatform.buildRustPackage {
|
avante-nvim-lib = rustPlatform.buildRustPackage {
|
||||||
pname = "avante-nvim-lib";
|
inherit pname version src;
|
||||||
inherit version src;
|
|
||||||
|
|
||||||
cargoHash = "sha256-pTWCT2s820mjnfTscFnoSKC37RE7DAPKxP71QuM+JXQ=";
|
cargoHash = "sha256-pTWCT2s820mjnfTscFnoSKC37RE7DAPKxP71QuM+JXQ=";
|
||||||
|
|
||||||
|
|
@ -43,6 +45,8 @@
|
||||||
"--skip=test_roundtrip"
|
"--skip=test_roundtrip"
|
||||||
"--skip=test_fetch_md"
|
"--skip=test_fetch_md"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
env.RUSTFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-C link-arg=-undefined -C link-arg=dynamic_lookup";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
vimUtils.buildVimPlugin {
|
vimUtils.buildVimPlugin {
|
||||||
|
|
@ -64,7 +68,15 @@ in
|
||||||
# Requires setup with corresponding provider
|
# Requires setup with corresponding provider
|
||||||
"avante.providers.azure"
|
"avante.providers.azure"
|
||||||
"avante.providers.copilot"
|
"avante.providers.copilot"
|
||||||
"avante.providers.vertex_claude"
|
"avante.providers.gemini"
|
||||||
"avante.providers.ollama"
|
"avante.providers.ollama"
|
||||||
|
"avante.providers.vertex"
|
||||||
|
"avante.providers.vertex_claude"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Neovim plugin designed to emulate the behaviour of the Cursor AI IDE";
|
||||||
|
homepage = "https://github.com/yetone/avante.nvim";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,19 @@
|
||||||
{
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
rustPlatform,
|
rustPlatform,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
writeShellScriptBin,
|
writeShellScriptBin,
|
||||||
}:
|
}:
|
||||||
rustPlatform.buildRustPackage (finalAttrs: {
|
rustPlatform.buildRustPackage (finalAttrs: {
|
||||||
pname = "blink-cmp";
|
pname = "blink-cmp";
|
||||||
version = "1.6.0";
|
version = "1.8.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Saghen";
|
owner = "Saghen";
|
||||||
repo = "blink.cmp";
|
repo = "blink.cmp";
|
||||||
tag = "v${finalAttrs.version}";
|
tag = "v${finalAttrs.version}";
|
||||||
hash = "sha256-IHRYgKcYP+JDGu8Vtawgzlhq25vpROFqb8KmpfVMwCk=";
|
hash = "sha256-JjlcPj7v9J+v1SDBYIub6jFEslLhZGHmsipV1atUAFo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
forceShare = [
|
forceShare = [
|
||||||
|
|
@ -29,11 +31,24 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||||
mv "$out/lib" "$out/target/release"
|
mv "$out/lib" "$out/target/release"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
cargoHash = "sha256-QsVCugYWRri4qu64wHnbJQZBhy4tQrr+gCYbXtRBlqE=";
|
cargoHash = "sha256-Qdt8O7IGj2HySb1jxsv3m33ZxJg96Ckw26oTEEyQjfs=";
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
(writeShellScriptBin "git" "exit 1")
|
(writeShellScriptBin "git" "exit 1")
|
||||||
];
|
];
|
||||||
|
|
||||||
env.RUSTC_BOOTSTRAP = true;
|
env = {
|
||||||
|
RUSTC_BOOTSTRAP = true;
|
||||||
|
|
||||||
|
# Those are the Linker args used by upstream. Without those, the build fails.
|
||||||
|
# See:
|
||||||
|
# <https://github.com/saghen/blink.cmp/blob/main/.cargo/config.toml#L1C1-L11C2>
|
||||||
|
RUSTFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-C link-arg=-undefined -C link-arg=dynamic_lookup";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Performant, batteries-included completion plugin for Neovim";
|
||||||
|
homepage = "https://github.com/saghen/blink.cmp";
|
||||||
|
changelog = "https://github.com/Saghen/blink.cmp/blob/v${finalAttrs.version}/CHANGELOG.md";
|
||||||
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
48
flake/pkgs/by-name/prettier-plugin-astro/package.nix
Normal file
48
flake/pkgs/by-name/prettier-plugin-astro/package.nix
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
nodejs,
|
||||||
|
pnpm_9,
|
||||||
|
pins,
|
||||||
|
}: let
|
||||||
|
pin = pins.prettier-plugin-astro;
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "prettier-plugin-astro";
|
||||||
|
version = pin.version or pin.revision;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
inherit (pin.repository) owner repo;
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
sha256 = pin.hash;
|
||||||
|
};
|
||||||
|
|
||||||
|
pnpmDeps = pnpm_9.fetchDeps {
|
||||||
|
inherit (finalAttrs) pname src;
|
||||||
|
fetcherVersion = 2;
|
||||||
|
hash = "sha256-K7pIWLkIIbUKDIcysfEtcf/eVMX9ZgyFHdqcuycHCNE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
nodejs
|
||||||
|
pnpm_9.configHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
|
||||||
|
pnpm run build
|
||||||
|
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
# mkdir -p $out/dist
|
||||||
|
cp -r dist/ $out
|
||||||
|
cp -r node_modules $out
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
})
|
||||||
19
flake/pkgs/by-name/prettier-plugin-svelte/package.nix
Normal file
19
flake/pkgs/by-name/prettier-plugin-svelte/package.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
buildNpmPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
pins,
|
||||||
|
}: let
|
||||||
|
pin = pins.prettier-plugin-svelte;
|
||||||
|
in
|
||||||
|
buildNpmPackage (finalAttrs: {
|
||||||
|
pname = "prettier-plugin-svelte";
|
||||||
|
version = pin.version or pin.revision;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
inherit (pin.repository) owner repo;
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
sha256 = pin.hash;
|
||||||
|
};
|
||||||
|
|
||||||
|
npmDepsHash = "sha256-D+gDdKiIG38jV+M/BqTKf0yYj1KXpbIodtQFdzocpn8=";
|
||||||
|
})
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
# - the addition of the function `entryBefore` indicating a "wanted
|
# - the addition of the function `entryBefore` indicating a "wanted
|
||||||
# by" relationship.
|
# by" relationship.
|
||||||
{lib}: let
|
{lib}: let
|
||||||
inherit (builtins) isAttrs attrValues attrNames elem all head tail length toJSON isString;
|
inherit (builtins) isAttrs attrValues attrNames elem all head tail length toJSON isString removeAttrs;
|
||||||
inherit (lib.attrsets) filterAttrs mapAttrs;
|
inherit (lib.attrsets) filterAttrs mapAttrs;
|
||||||
inherit (lib.lists) toposort;
|
inherit (lib.lists) toposort;
|
||||||
inherit (lib.nvim.dag) empty isEntry entryBetween entryAfter entriesBetween entryAnywhere topoSort;
|
inherit (lib.nvim.dag) empty isEntry entryBetween entryAfter entriesBetween entryAnywhere topoSort;
|
||||||
|
|
@ -169,10 +169,11 @@ in {
|
||||||
else value)
|
else value)
|
||||||
dag;
|
dag;
|
||||||
sortedDag = topoSort finalDag;
|
sortedDag = topoSort finalDag;
|
||||||
|
loopDetail = map (loops: removeAttrs loops ["data"]) sortedDag.loops;
|
||||||
result =
|
result =
|
||||||
if sortedDag ? result
|
if sortedDag ? result
|
||||||
then mapResult sortedDag.result
|
then mapResult sortedDag.result
|
||||||
else abort ("Dependency cycle in ${name}: " + toJSON sortedDag);
|
else abort ("Dependency cycle in ${name}: " + toJSON loopDetail);
|
||||||
in
|
in
|
||||||
result;
|
result;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{lib}: let
|
{lib}: let
|
||||||
inherit (builtins) isString getAttr;
|
inherit (builtins) isString getAttr;
|
||||||
inherit (lib.options) mkOption;
|
inherit (lib.options) mkOption;
|
||||||
inherit (lib.types) listOf bool str submodule attrsOf anything either nullOr;
|
inherit (lib.types) listOf bool str submodule attrsOf anything either nullOr uniq;
|
||||||
inherit (lib.nvim.attrsets) mapListToAttrs;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.types) luaInline;
|
inherit (lib.nvim.types) luaInline;
|
||||||
in {
|
in {
|
||||||
|
|
@ -46,7 +46,7 @@ in {
|
||||||
capabilities = mkOption {
|
capabilities = mkOption {
|
||||||
type = nullOr (either luaInline (attrsOf anything));
|
type = nullOr (either luaInline (attrsOf anything));
|
||||||
default = null;
|
default = null;
|
||||||
description = "LSP capabilitiess to pass to lspconfig";
|
description = "LSP capabilities to pass to LSP server configuration";
|
||||||
};
|
};
|
||||||
|
|
||||||
on_attach = mkOption {
|
on_attach = mkOption {
|
||||||
|
|
@ -58,11 +58,11 @@ in {
|
||||||
filetypes = mkOption {
|
filetypes = mkOption {
|
||||||
type = nullOr (listOf str);
|
type = nullOr (listOf str);
|
||||||
default = null;
|
default = null;
|
||||||
description = "Filetypes to auto-attach LSP in";
|
description = "Filetypes to auto-attach LSP server in";
|
||||||
};
|
};
|
||||||
|
|
||||||
cmd = mkOption {
|
cmd = mkOption {
|
||||||
type = nullOr (listOf str);
|
type = nullOr (either luaInline (uniq (listOf str)));
|
||||||
default = null;
|
default = null;
|
||||||
description = "Command used to start the LSP server";
|
description = "Command used to start the LSP server";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
134
lib/lua.nix
134
lib/lua.nix
|
|
@ -1,92 +1,52 @@
|
||||||
# Helpers for converting values to lua
|
# Helpers for converting values to lua
|
||||||
{lib}: let
|
{lib}: let
|
||||||
inherit (builtins) hasAttr head throw typeOf isList isAttrs isBool isInt isString isPath isFloat toJSON;
|
|
||||||
inherit (lib.attrsets) mapAttrsToList filterAttrs;
|
|
||||||
inherit (lib.strings) concatStringsSep concatMapStringsSep stringToCharacters;
|
|
||||||
inherit (lib.trivial) boolToString warn;
|
|
||||||
in rec {
|
|
||||||
# Convert a null value to lua's nil
|
|
||||||
nullString = value:
|
|
||||||
if value == null
|
|
||||||
then "nil"
|
|
||||||
else "'${value}'";
|
|
||||||
|
|
||||||
# convert an expression to lua
|
|
||||||
expToLua = exp:
|
|
||||||
if isList exp
|
|
||||||
then listToLuaTable exp # if list, convert to lua table
|
|
||||||
else if isAttrs exp
|
|
||||||
then attrsetToLuaTable exp # if attrs, convert to table
|
|
||||||
else if isBool exp
|
|
||||||
then boolToString exp # if bool, convert to string
|
|
||||||
else if isInt exp
|
|
||||||
then toString exp # if int, convert to string
|
|
||||||
else if exp == null
|
|
||||||
then "nil"
|
|
||||||
else (toJSON exp); # otherwise jsonify the value and print as is
|
|
||||||
|
|
||||||
# convert list to a lua table
|
|
||||||
listToLuaTable = list:
|
|
||||||
"{ " + (concatStringsSep ", " (map expToLua list)) + " }";
|
|
||||||
|
|
||||||
# convert attrset to a lua table
|
|
||||||
attrsetToLuaTable = attrset:
|
|
||||||
"{ "
|
|
||||||
+ (
|
|
||||||
concatStringsSep ", "
|
|
||||||
(
|
|
||||||
mapAttrsToList (
|
|
||||||
name: value:
|
|
||||||
name
|
|
||||||
+ " = "
|
|
||||||
+ (expToLua value)
|
|
||||||
)
|
|
||||||
attrset
|
|
||||||
)
|
|
||||||
)
|
|
||||||
+ " }";
|
|
||||||
# Convert a list of lua expressions to a lua table. The difference to listToLuaTable is that the elements here are expected to be lua expressions already, whereas listToLuaTable converts from nix types to lua first
|
|
||||||
luaTable = items: ''{${concatStringsSep "," items}}'';
|
|
||||||
|
|
||||||
isLuaInline = object: (object._type or null) == "lua-inline";
|
isLuaInline = object: (object._type or null) == "lua-inline";
|
||||||
|
|
||||||
toLuaObject = args:
|
toLuaObject = args:
|
||||||
if isAttrs args
|
{
|
||||||
then
|
int = toString args;
|
||||||
if isLuaInline args
|
float = toString args;
|
||||||
then args.expr
|
|
||||||
else if hasAttr "__empty" args
|
# escapes \ and quotes
|
||||||
then
|
string = builtins.toJSON args;
|
||||||
warn ''
|
path = builtins.toJSON args;
|
||||||
Using `__empty` to define an empty lua table is deprecated. Use an empty attrset instead.
|
|
||||||
'' "{ }"
|
bool = lib.boolToString args;
|
||||||
else
|
null = "nil";
|
||||||
"{"
|
|
||||||
+ (concatStringsSep ","
|
list = "{${lib.concatMapStringsSep ",\n" toLuaObject args}}";
|
||||||
(mapAttrsToList
|
|
||||||
(n: v:
|
set =
|
||||||
if head (stringToCharacters n) == "@"
|
if lib.isDerivation args
|
||||||
then toLuaObject v
|
then ''"${args}"''
|
||||||
else "[${toLuaObject n}] = " + (toLuaObject v))
|
else if isLuaInline args
|
||||||
(filterAttrs
|
then args.expr
|
||||||
(_: v: v != null)
|
else "{${
|
||||||
args)))
|
lib.pipe args [
|
||||||
+ "}"
|
(lib.filterAttrs (_: v: v != null))
|
||||||
else if isList args
|
(builtins.mapAttrs (
|
||||||
then "{" + concatMapStringsSep "," toLuaObject args + "}"
|
n: v:
|
||||||
else if isString args
|
if lib.hasPrefix "@" n
|
||||||
then
|
then toLuaObject v
|
||||||
# This should be enough!
|
else "[${toLuaObject n}] = ${toLuaObject v}"
|
||||||
toJSON args
|
))
|
||||||
else if isPath args
|
builtins.attrValues
|
||||||
then toJSON (toString args)
|
(lib.concatStringsSep ",\n")
|
||||||
else if isBool args
|
]
|
||||||
then "${boolToString args}"
|
}}";
|
||||||
else if isFloat args
|
}
|
||||||
then "${toString args}"
|
.${
|
||||||
else if isInt args
|
builtins.typeOf args
|
||||||
then "${toString args}"
|
}
|
||||||
else if (args == null)
|
or (builtins.throw "Could not convert object of type `${builtins.typeOf args}` to lua object");
|
||||||
then "nil"
|
in
|
||||||
else throw "could not convert object of type `${typeOf args}` to lua object";
|
{
|
||||||
}
|
inherit isLuaInline toLuaObject;
|
||||||
|
luaTable = x: (toLuaObject (map lib.mkLuaInline x));
|
||||||
|
}
|
||||||
|
// lib.genAttrs [
|
||||||
|
"nullString"
|
||||||
|
"expToLua"
|
||||||
|
"listToLuaTable"
|
||||||
|
"attrsetToLuaTable"
|
||||||
|
] (name: lib.warn "${name} is deprecated use toLuaObject instead" toLuaObject)
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,10 @@
|
||||||
{lib}: let
|
{lib}: let
|
||||||
|
inherit (builtins) toJSON;
|
||||||
inherit (lib.options) mergeEqualOption;
|
inherit (lib.options) mergeEqualOption;
|
||||||
|
inherit (lib.lists) singleton;
|
||||||
inherit (lib.strings) isString stringLength match;
|
inherit (lib.strings) isString stringLength match;
|
||||||
inherit (lib.types) listOf mkOptionType;
|
inherit (lib.types) listOf mkOptionType coercedTo;
|
||||||
|
inherit (lib.trivial) warn;
|
||||||
in {
|
in {
|
||||||
mergelessListOf = elemType:
|
mergelessListOf = elemType:
|
||||||
mkOptionType {
|
mkOptionType {
|
||||||
|
|
@ -25,4 +28,15 @@ in {
|
||||||
description = "RGB color in hex format";
|
description = "RGB color in hex format";
|
||||||
check = v: isString v && (match "#?[0-9a-fA-F]{6}" v) != null;
|
check = v: isString v && (match "#?[0-9a-fA-F]{6}" v) != null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# no compound types please
|
||||||
|
deprecatedSingleOrListOf = option: t:
|
||||||
|
coercedTo
|
||||||
|
t
|
||||||
|
(x:
|
||||||
|
warn ''
|
||||||
|
${option} no longer accepts non-list values, use [${toJSON x}] instead
|
||||||
|
''
|
||||||
|
(singleton x))
|
||||||
|
(listOf t);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,5 @@ in {
|
||||||
inherit (typesDag) dagOf;
|
inherit (typesDag) dagOf;
|
||||||
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
|
||||||
inherit (typesLanguage) diagnostics mkGrammarOption;
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
||||||
inherit (customTypes) char hexColor mergelessListOf;
|
inherit (customTypes) char hexColor mergelessListOf deprecatedSingleOrListOf;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,9 @@
|
||||||
{lib, ...}: let
|
{lib, ...}: let
|
||||||
inherit (lib.modules) mkRemovedOptionModule mkRenamedOptionModule;
|
inherit (builtins) head;
|
||||||
|
inherit (lib.modules) mkRemovedOptionModule mkRenamedOptionModule doRename;
|
||||||
inherit (lib.lists) concatLists;
|
inherit (lib.lists) concatLists;
|
||||||
inherit (lib.nvim.config) batchRenameOptions;
|
inherit (lib.nvim.config) batchRenameOptions;
|
||||||
|
inherit (lib.trivial) warn;
|
||||||
|
|
||||||
renamedVimOpts = batchRenameOptions ["vim"] ["vim" "options"] {
|
renamedVimOpts = batchRenameOptions ["vim"] ["vim" "options"] {
|
||||||
# 2024-12-01
|
# 2024-12-01
|
||||||
|
|
@ -20,6 +22,31 @@
|
||||||
# 2025-02-07
|
# 2025-02-07
|
||||||
scrollOffset = "scrolloff";
|
scrollOffset = "scrolloff";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mkRemovedLspOpt = lang: (mkRemovedOptionModule ["vim" "languages" lang "lsp" "opts"] ''
|
||||||
|
`vim.languages.${lang}.lsp.opts` is now moved to `vim.lsp.servers.<server_name>.init_options`
|
||||||
|
'');
|
||||||
|
|
||||||
|
mkRemovedLspPackage = lang: (mkRemovedOptionModule ["vim" "languages" lang "lsp" "package"] ''
|
||||||
|
`vim.languages.${lang}.lsp.package` is now moved to `vim.lsp.servers.<server_name>.cmd`
|
||||||
|
'');
|
||||||
|
|
||||||
|
mkRenamedLspServer = lang:
|
||||||
|
doRename
|
||||||
|
{
|
||||||
|
from = ["vim" "languages" lang "lsp" "server"];
|
||||||
|
to = ["vim" "languages" lang "lsp" "servers"];
|
||||||
|
visible = false;
|
||||||
|
warn = true;
|
||||||
|
use = x:
|
||||||
|
warn
|
||||||
|
"Obsolete option `vim.languages.${lang}.lsp.server` used, use `vim.languages.${lang}.lsp.servers` instead."
|
||||||
|
(head x);
|
||||||
|
};
|
||||||
|
|
||||||
|
mkRemovedFormatPackage = lang: (mkRemovedOptionModule ["vim" "languages" lang "format" "package"] ''
|
||||||
|
`vim.languages.${lang}.format.package` is removed, please use `vim.formatter.conform-nvim.formatters.<formatter_name>.command` instead.
|
||||||
|
'');
|
||||||
in {
|
in {
|
||||||
imports = concatLists [
|
imports = concatLists [
|
||||||
[
|
[
|
||||||
|
|
@ -120,8 +147,165 @@ in {
|
||||||
in 'vim.clipboard.registers'. Please see the documentation for the new module for more
|
in 'vim.clipboard.registers'. Please see the documentation for the new module for more
|
||||||
details, or open an issue if you are confused.
|
details, or open an issue if you are confused.
|
||||||
'')
|
'')
|
||||||
|
|
||||||
|
# 2025-07-12
|
||||||
|
(mkRenamedLspServer "assembly")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "astro")
|
||||||
|
(mkRemovedLspPackage "astro")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "bash")
|
||||||
|
(mkRemovedLspPackage "bash")
|
||||||
|
|
||||||
|
(mkRemovedLspOpt "clang")
|
||||||
|
(mkRemovedLspPackage "clang")
|
||||||
|
(mkRenamedLspServer "clang")
|
||||||
|
|
||||||
|
(mkRemovedLspPackage "clojure")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "csharp")
|
||||||
|
(mkRemovedLspPackage "csharp")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "css")
|
||||||
|
(mkRemovedLspPackage "css")
|
||||||
|
|
||||||
|
(mkRemovedLspPackage "cue")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "dart")
|
||||||
|
(mkRemovedLspPackage "dart")
|
||||||
|
(mkRemovedLspOpt "dart")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "elixir")
|
||||||
|
(mkRemovedLspPackage "elixir")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "fsharp")
|
||||||
|
(mkRemovedLspPackage "fsharp")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "gleam")
|
||||||
|
(mkRemovedLspPackage "gleam")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "go")
|
||||||
|
(mkRemovedLspPackage "go")
|
||||||
|
|
||||||
|
(mkRemovedLspPackage "haskell")
|
||||||
|
|
||||||
|
(mkRemovedLspPackage "hcl")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "helm")
|
||||||
|
(mkRemovedLspPackage "helm")
|
||||||
|
|
||||||
|
(mkRemovedLspPackage "java")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "julia")
|
||||||
|
(mkRemovedLspPackage "julia")
|
||||||
|
|
||||||
|
(mkRemovedLspPackage "kotlin")
|
||||||
|
|
||||||
|
(mkRemovedLspPackage "lua")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "markdown")
|
||||||
|
(mkRemovedLspPackage "markdown")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "nim")
|
||||||
|
(mkRemovedLspPackage "nim")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "nix")
|
||||||
|
(mkRemovedLspPackage "nix")
|
||||||
|
(mkRemovedOptionModule ["vim" "languages" "nix" "lsp" "options"] ''
|
||||||
|
`vim.languages.nix.lsp.options` has been moved to `vim.lsp.servers.<server_name>.init_options`.
|
||||||
|
'')
|
||||||
|
|
||||||
|
(mkRenamedLspServer "nu")
|
||||||
|
(mkRemovedLspPackage "nu")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "ocaml")
|
||||||
|
(mkRemovedLspPackage "ocaml")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "odin")
|
||||||
|
(mkRemovedLspPackage "odin")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "php")
|
||||||
|
(mkRemovedLspPackage "php")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "python")
|
||||||
|
(mkRemovedLspPackage "python")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "r")
|
||||||
|
(mkRemovedLspPackage "r")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "ruby")
|
||||||
|
(mkRemovedLspPackage "ruby")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "sql")
|
||||||
|
(mkRemovedLspPackage "sql")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "svelte")
|
||||||
|
(mkRemovedLspPackage "svelte")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "tailwind")
|
||||||
|
(mkRemovedLspPackage "tailwind")
|
||||||
|
|
||||||
|
(mkRemovedLspPackage "terraform")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "ts")
|
||||||
|
(mkRemovedLspPackage "ts")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "typst")
|
||||||
|
(mkRemovedLspPackage "typst")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "vala")
|
||||||
|
(mkRemovedLspPackage "vala")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "wgsl")
|
||||||
|
(mkRemovedLspPackage "wgsl")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "yaml")
|
||||||
|
(mkRemovedLspPackage "yaml")
|
||||||
|
|
||||||
|
(mkRenamedLspServer "zig")
|
||||||
|
(mkRemovedLspPackage "zig")
|
||||||
|
|
||||||
|
# 2025-10-22
|
||||||
|
(mkRenamedOptionModule ["vim" "languages" "rust" "crates" "enable"] ["vim" "languages" "rust" "extensions" "crates-nvim" "enable"])
|
||||||
|
(mkRemovedOptionModule ["vim" "languages" "rust" "crates" "codeActions"] ''
|
||||||
|
'vim.languages.rust.crates' option has been moved to 'vim.languages.rust.extensions.crates-nvim' in full and the
|
||||||
|
codeActions option has been removed. To set up code actions again, you may use the the new 'setupOpts' option
|
||||||
|
located under 'vim.languages.rust.extensions.crates-nvim'. Refer to crates.nvim documentation for setup steps:
|
||||||
|
|
||||||
|
<https://github.com/Saecki/crates.nvim/wiki/Documentation-v0.7.1#in-process-language-server>
|
||||||
|
'')
|
||||||
|
|
||||||
|
(mkRemovedOptionModule ["vim" "language" "astro" "format"] ''
|
||||||
|
This option has been removed due to being broken for a long time.
|
||||||
|
'')
|
||||||
|
(mkRemovedOptionModule ["vim" "language" "svelte" "format"] ''
|
||||||
|
This option has been removed due to being broken for a long time.
|
||||||
|
'')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
(map mkRemovedFormatPackage [
|
||||||
|
"bash"
|
||||||
|
"css"
|
||||||
|
"elixir"
|
||||||
|
"fsharp"
|
||||||
|
"go"
|
||||||
|
"hcl"
|
||||||
|
"html"
|
||||||
|
"json"
|
||||||
|
"lua"
|
||||||
|
"markdown"
|
||||||
|
"nim"
|
||||||
|
"nix"
|
||||||
|
"ocaml"
|
||||||
|
"python"
|
||||||
|
"qml"
|
||||||
|
"r"
|
||||||
|
"ruby"
|
||||||
|
"rust"
|
||||||
|
"sql"
|
||||||
|
"ts"
|
||||||
|
"typst"
|
||||||
|
])
|
||||||
# Migrated via batchRenameOptions. Further batch renames must be below this line.
|
# Migrated via batchRenameOptions. Further batch renames must be below this line.
|
||||||
renamedVimOpts
|
renamedVimOpts
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
inherit (lib.types) nullOr submodule listOf str bool;
|
inherit (lib.types) nullOr submodule listOf str bool;
|
||||||
inherit (lib.nvim.types) luaInline;
|
inherit (lib.nvim.types) luaInline;
|
||||||
inherit (lib.nvim.lua) toLuaObject;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
inherit (lib.nvim.dag) entryAfter;
|
inherit (lib.nvim.dag) entryAfter entryBetween;
|
||||||
|
|
||||||
autocommandType = submodule {
|
autocommandType = submodule {
|
||||||
options = {
|
options = {
|
||||||
|
|
@ -144,7 +144,7 @@ in {
|
||||||
enabledAutogroups = filter (au: au.enable) cfg.augroups;
|
enabledAutogroups = filter (au: au.enable) cfg.augroups;
|
||||||
in {
|
in {
|
||||||
luaConfigRC = {
|
luaConfigRC = {
|
||||||
augroups = entryAfter ["pluginConfigs"] (optionalString (enabledAutogroups != []) ''
|
augroups = entryBetween ["autocmds"] ["pluginConfigs"] (optionalString (enabledAutogroups != []) ''
|
||||||
local nvf_autogroups = {}
|
local nvf_autogroups = {}
|
||||||
for _, group in ipairs(${toLuaObject enabledAutogroups}) do
|
for _, group in ipairs(${toLuaObject enabledAutogroups}) do
|
||||||
if group.name then
|
if group.name then
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ in {
|
||||||
clipboard = {
|
clipboard = {
|
||||||
enable = mkEnableOption ''
|
enable = mkEnableOption ''
|
||||||
clipboard management for Neovim. Users may still choose to manage their
|
clipboard management for Neovim. Users may still choose to manage their
|
||||||
clipboard through [](#opt-vim.options) should they wish to avoid using
|
clipboard through {option}`vim.options` should they wish to avoid using
|
||||||
this module.
|
this module.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,5 +8,6 @@
|
||||||
./highlight.nix
|
./highlight.nix
|
||||||
./lsp.nix
|
./lsp.nix
|
||||||
./spellcheck.nix
|
./spellcheck.nix
|
||||||
|
./util.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
cfg = config.vim.lsp;
|
cfg = config.vim.lsp;
|
||||||
|
|
||||||
|
# TODO: lspConfigurations filter on enabledServers instead of cfg.servers?
|
||||||
lspConfigurations =
|
lspConfigurations =
|
||||||
mapAttrsToList (
|
mapAttrsToList (
|
||||||
name: value: ''
|
name: value: ''
|
||||||
|
|
@ -76,7 +77,6 @@ in {
|
||||||
{
|
{
|
||||||
vim.lsp.servers."*" = {
|
vim.lsp.servers."*" = {
|
||||||
capabilities = mkDefault (mkLuaInline "capabilities");
|
capabilities = mkDefault (mkLuaInline "capabilities");
|
||||||
on_attach = mkDefault (mkLuaInline "default_on_attach");
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
inherit (lib.strings) concatLines concatStringsSep optionalString;
|
inherit (lib.strings) concatLines concatStringsSep optionalString;
|
||||||
inherit (lib.attrsets) mapAttrsToList;
|
inherit (lib.attrsets) mapAttrsToList;
|
||||||
inherit (lib.types) listOf str attrsOf;
|
inherit (lib.types) listOf str attrsOf;
|
||||||
inherit (lib.nvim.lua) listToLuaTable;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
inherit (lib.nvim.dag) entryAfter;
|
inherit (lib.nvim.dag) entryAfter;
|
||||||
|
|
||||||
cfg = config.vim.spellcheck;
|
cfg = config.vim.spellcheck;
|
||||||
|
|
@ -29,7 +29,7 @@ in {
|
||||||
|
|
||||||
To add your own language files, you may place your `spell` directory in either
|
To add your own language files, you may place your `spell` directory in either
|
||||||
{file}`$XDG_CONFIG_HOME/nvf` or in a path that is included in the
|
{file}`$XDG_CONFIG_HOME/nvf` or in a path that is included in the
|
||||||
[additionalRuntimePaths](#opt-vim.additionalRuntimePaths) list provided by nvf.
|
[additionalRuntimePaths](./options.html#option-vim-additionalRuntimePaths) list provided by nvf.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -152,7 +152,7 @@ in {
|
||||||
vim.api.nvim_create_augroup("nvf_autocmds", {clear = false})
|
vim.api.nvim_create_augroup("nvf_autocmds", {clear = false})
|
||||||
vim.api.nvim_create_autocmd({ "FileType" }, {
|
vim.api.nvim_create_autocmd({ "FileType" }, {
|
||||||
group = "nvf_autocmds",
|
group = "nvf_autocmds",
|
||||||
pattern = ${listToLuaTable cfg.ignoredFiletypes},
|
pattern = ${toLuaObject cfg.ignoredFiletypes},
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.opt_local.spell = false
|
vim.opt_local.spell = false
|
||||||
end,
|
end,
|
||||||
|
|
|
||||||
177
modules/neovim/init/util.nix
Normal file
177
modules/neovim/init/util.nix
Normal file
|
|
@ -0,0 +1,177 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
|
inherit (lib.nvim.dag) entryBefore;
|
||||||
|
|
||||||
|
cfg = config.vim.lsp;
|
||||||
|
in {
|
||||||
|
config = mkMerge [
|
||||||
|
(mkIf (cfg.servers != {}) {
|
||||||
|
vim.luaConfigRC.lsp-util =
|
||||||
|
entryBefore ["lsp-servers"]
|
||||||
|
/*
|
||||||
|
lua
|
||||||
|
*/
|
||||||
|
''
|
||||||
|
-- Port of nvim-lspconfig util
|
||||||
|
local util = { path = {} }
|
||||||
|
|
||||||
|
util.default_config = {
|
||||||
|
log_level = vim.lsp.protocol.MessageType.Warning,
|
||||||
|
message_level = vim.lsp.protocol.MessageType.Warning,
|
||||||
|
settings = vim.empty_dict(),
|
||||||
|
init_options = vim.empty_dict(),
|
||||||
|
handlers = {},
|
||||||
|
autostart = true,
|
||||||
|
capabilities = vim.lsp.protocol.make_client_capabilities(),
|
||||||
|
}
|
||||||
|
|
||||||
|
-- global on_setup hook
|
||||||
|
util.on_setup = nil
|
||||||
|
|
||||||
|
do
|
||||||
|
local validate = vim.validate
|
||||||
|
local api = vim.api
|
||||||
|
local lsp = vim.lsp
|
||||||
|
local nvim_eleven = vim.fn.has 'nvim-0.11' == 1
|
||||||
|
|
||||||
|
local iswin = vim.uv.os_uname().version:match 'Windows'
|
||||||
|
|
||||||
|
local function escape_wildcards(path)
|
||||||
|
return path:gsub('([%[%]%?%*])', '\\%1')
|
||||||
|
end
|
||||||
|
|
||||||
|
local function is_fs_root(path)
|
||||||
|
if iswin then
|
||||||
|
return path:match '^%a:$'
|
||||||
|
else
|
||||||
|
return path == '/'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function traverse_parents(path, cb)
|
||||||
|
path = vim.uv.fs_realpath(path)
|
||||||
|
local dir = path
|
||||||
|
-- Just in case our algo is buggy, don't infinite loop.
|
||||||
|
for _ = 1, 100 do
|
||||||
|
dir = vim.fs.dirname(dir)
|
||||||
|
if not dir then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
-- If we can't ascend further, then stop looking.
|
||||||
|
if cb(dir, path) then
|
||||||
|
return dir, path
|
||||||
|
end
|
||||||
|
if is_fs_root(dir) then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
util.root_pattern = function(...)
|
||||||
|
local patterns = util.tbl_flatten { ... }
|
||||||
|
return function(startpath)
|
||||||
|
startpath = util.strip_archive_subpath(startpath)
|
||||||
|
for _, pattern in ipairs(patterns) do
|
||||||
|
local match = util.search_ancestors(startpath, function(path)
|
||||||
|
for _, p in ipairs(vim.fn.glob(table.concat({ escape_wildcards(path), pattern }, '/'), true, true)) do
|
||||||
|
if vim.uv.fs_stat(p) then
|
||||||
|
return path
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
if match ~= nil then
|
||||||
|
return match
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
util.root_markers_with_field = function(root_files, new_names, field, fname)
|
||||||
|
local path = vim.fn.fnamemodify(fname, ':h')
|
||||||
|
local found = vim.fs.find(new_names, { path = path, upward = true })
|
||||||
|
|
||||||
|
for _, f in ipairs(found or {}) do
|
||||||
|
-- Match the given `field`.
|
||||||
|
for line in io.lines(f) do
|
||||||
|
if line:find(field) then
|
||||||
|
root_files[#root_files + 1] = vim.fs.basename(f)
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return root_files
|
||||||
|
end
|
||||||
|
|
||||||
|
util.insert_package_json = function(root_files, field, fname)
|
||||||
|
return util.root_markers_with_field(root_files, { 'package.json', 'package.json5' }, field, fname)
|
||||||
|
end
|
||||||
|
|
||||||
|
util.strip_archive_subpath = function(path)
|
||||||
|
-- Matches regex from zip.vim / tar.vim
|
||||||
|
path = vim.fn.substitute(path, 'zipfile://\\(.\\{-}\\)::[^\\\\].*$', '\\1', ''')
|
||||||
|
path = vim.fn.substitute(path, 'tarfile:\\(.\\{-}\\)::.*$', '\\1', ''')
|
||||||
|
return path
|
||||||
|
end
|
||||||
|
|
||||||
|
util.get_typescript_server_path = function(root_dir)
|
||||||
|
local project_roots = vim.fs.find('node_modules', { path = root_dir, upward = true, limit = math.huge })
|
||||||
|
for _, project_root in ipairs(project_roots) do
|
||||||
|
local typescript_path = project_root .. '/typescript'
|
||||||
|
local stat = vim.loop.fs_stat(typescript_path)
|
||||||
|
if stat and stat.type == 'directory' then
|
||||||
|
return typescript_path .. '/lib'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return '''
|
||||||
|
end
|
||||||
|
|
||||||
|
util.search_ancestors = function(startpath, func)
|
||||||
|
if nvim_eleven then
|
||||||
|
validate('func', func, 'function')
|
||||||
|
end
|
||||||
|
if func(startpath) then
|
||||||
|
return startpath
|
||||||
|
end
|
||||||
|
local guard = 100
|
||||||
|
for path in vim.fs.parents(startpath) do
|
||||||
|
-- Prevent infinite recursion if our algorithm breaks
|
||||||
|
guard = guard - 1
|
||||||
|
if guard == 0 then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if func(path) then
|
||||||
|
return path
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
util.path.is_descendant = function(root, path)
|
||||||
|
if not path then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
local function cb(dir, _)
|
||||||
|
return dir == root
|
||||||
|
end
|
||||||
|
|
||||||
|
local dir, _ = traverse_parents(path, cb)
|
||||||
|
|
||||||
|
return dir == root
|
||||||
|
end
|
||||||
|
|
||||||
|
util.tbl_flatten = function(t)
|
||||||
|
--- @diagnostic disable-next-line:deprecated
|
||||||
|
return nvim_eleven and vim.iter(t):flatten(math.huge):totable() or vim.tbl_flatten(t)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
options,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
|
|
@ -10,8 +11,7 @@
|
||||||
|
|
||||||
cfg = config.vim.assistant.chatgpt;
|
cfg = config.vim.assistant.chatgpt;
|
||||||
|
|
||||||
self = import ./chatgpt.nix {inherit lib;};
|
mappingDefinitions = options.vim.assistant.chatgpt.mappings;
|
||||||
mappingDefinitions = self.options.vim.assistant.chatgpt.mappings;
|
|
||||||
mappings = addDescriptionsToMappings cfg.mappings mappingDefinitions;
|
mappings = addDescriptionsToMappings cfg.mappings mappingDefinitions;
|
||||||
maps = mkMerge [
|
maps = mkMerge [
|
||||||
(mkSetBinding mappings.editWithInstructions "<cmd>ChatGPTEditWithInstruction<CR>")
|
(mkSetBinding mappings.editWithInstructions "<cmd>ChatGPTEditWithInstruction<CR>")
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,58 @@
|
||||||
{lib, ...}: let
|
{lib, ...}: let
|
||||||
inherit (lib.generators) mkLuaInline;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.options) mkOption mkEnableOption literalMD;
|
inherit (lib.options) mkOption mkEnableOption literalMD;
|
||||||
inherit (lib.types) attrs either nullOr;
|
inherit (lib.types) attrs either nullOr listOf submodule str;
|
||||||
inherit (lib.nvim.lua) toLuaObject;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
inherit (lib.nvim.types) luaInline mkPluginSetupOption;
|
inherit (lib.nvim.types) luaInline mkPluginSetupOption;
|
||||||
|
|
||||||
|
formattersType = submodule {
|
||||||
|
freeformType = attrs;
|
||||||
|
options = {
|
||||||
|
command = mkOption {
|
||||||
|
type = nullOr (either str luaInline);
|
||||||
|
default = null;
|
||||||
|
description = "The command to run.";
|
||||||
|
};
|
||||||
|
|
||||||
|
args = mkOption {
|
||||||
|
type = nullOr (either (listOf str) luaInline);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
A list of strings, or a lua function that returns a list of strings.
|
||||||
|
|
||||||
|
Return a single string instead of a list to run the command in a
|
||||||
|
shell.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
prepend_args = mkOption {
|
||||||
|
type = nullOr (either (listOf str) luaInline);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
When inherit = true, add additional arguments to the beginning of
|
||||||
|
args. Can also be a function, like args.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
append_args = mkOption {
|
||||||
|
type = nullOr (either (listOf str) luaInline);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
When inherit = true, add additional arguments to the end of args.
|
||||||
|
Can also be a function, like args.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options.vim.formatter.conform-nvim = {
|
options.vim.formatter.conform-nvim = {
|
||||||
enable = mkEnableOption "lightweight yet powerful formatter plugin for Neovim [conform-nvim]";
|
enable = mkEnableOption "lightweight yet powerful formatter plugin for Neovim [conform-nvim]";
|
||||||
setupOpts = mkPluginSetupOption "conform.nvim" {
|
setupOpts = mkPluginSetupOption "conform.nvim" {
|
||||||
|
formatters = mkOption {
|
||||||
|
type = formattersType;
|
||||||
|
default = {};
|
||||||
|
description = "Custom formatters and overrides for built-in formatters.";
|
||||||
|
};
|
||||||
formatters_by_ft = mkOption {
|
formatters_by_ft = mkOption {
|
||||||
type = attrs;
|
type = attrs;
|
||||||
default = {};
|
default = {};
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
options,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
|
|
@ -10,8 +11,7 @@
|
||||||
|
|
||||||
cfg = config.vim.git.git-conflict;
|
cfg = config.vim.git.git-conflict;
|
||||||
|
|
||||||
self = import ./git-conflict.nix {inherit lib config;};
|
gcMappingDefinitions = options.vim.git.git-conflict.mappings;
|
||||||
gcMappingDefinitions = self.options.vim.git.git-conflict.mappings;
|
|
||||||
|
|
||||||
gcMappings = addDescriptionsToMappings cfg.mappings gcMappingDefinitions;
|
gcMappings = addDescriptionsToMappings cfg.mappings gcMappingDefinitions;
|
||||||
in {
|
in {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
options,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) toJSON;
|
inherit (builtins) toJSON;
|
||||||
|
|
@ -12,8 +13,7 @@
|
||||||
|
|
||||||
cfg = config.vim.git.gitsigns;
|
cfg = config.vim.git.gitsigns;
|
||||||
|
|
||||||
self = import ./gitsigns.nix {inherit lib config;};
|
gsMappingDefinitions = options.vim.git.gitsigns.mappings;
|
||||||
gsMappingDefinitions = self.options.vim.git.gitsigns.mappings;
|
|
||||||
|
|
||||||
gsMappings = addDescriptionsToMappings cfg.mappings gsMappingDefinitions;
|
gsMappings = addDescriptionsToMappings cfg.mappings gsMappingDefinitions;
|
||||||
in {
|
in {
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,24 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.types) package;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
|
inherit (lib.meta) getExe;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.assembly;
|
cfg = config.vim.languages.assembly;
|
||||||
|
defaultServers = ["asm-lsp"];
|
||||||
|
servers = {
|
||||||
|
asm-lsp = {
|
||||||
|
enable = true;
|
||||||
|
cmd = [(getExe pkgs.asm-lsp)];
|
||||||
|
filetypes = ["asm" "vmasm"];
|
||||||
|
root_markers = [".asm-lsp.toml" ".git"];
|
||||||
|
};
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options.vim.languages.assembly = {
|
options.vim.languages.assembly = {
|
||||||
enable = mkEnableOption "Assembly support";
|
enable = mkEnableOption "Assembly support";
|
||||||
|
|
@ -20,12 +32,11 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Assembly LSP support (asm-lsp)" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Assembly LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
package = mkOption {
|
type = deprecatedSingleOrListOf "vim.language.asm.lsp.servers" (enum (attrNames servers));
|
||||||
type = package;
|
default = defaultServers;
|
||||||
default = pkgs.asm-lsp;
|
description = "Assembly LSP server to use";
|
||||||
description = "asm-lsp package";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -36,14 +47,12 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.asm-lsp = ''
|
mapListToAttrs (n: {
|
||||||
lspconfig.asm_lsp.setup {
|
name = n;
|
||||||
capabilities = capabilities,
|
value = servers.${n};
|
||||||
on_attach = default_on_attach,
|
})
|
||||||
cmd = {"${cfg.lsp.package}/bin/asm-lsp"},
|
cfg.lsp.servers;
|
||||||
}
|
|
||||||
'';
|
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
self,
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
|
|
@ -7,49 +8,54 @@
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.types) enum coercedTo;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.types) mkGrammarOption diagnostics;
|
inherit (lib.nvim.types) mkGrammarOption diagnostics deprecatedSingleOrListOf;
|
||||||
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
|
||||||
cfg = config.vim.languages.astro;
|
cfg = config.vim.languages.astro;
|
||||||
|
|
||||||
defaultServer = "astro";
|
defaultServers = ["astro"];
|
||||||
servers = {
|
servers = {
|
||||||
astro = {
|
astro = {
|
||||||
package = pkgs.astro-language-server;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.astro-language-server) "--stdio"];
|
||||||
lspconfig.astro.setup {
|
filetypes = ["astro"];
|
||||||
capabilities = capabilities,
|
root_markers = ["package.json" "tsconfig.json" "jsconfig.json" ".git"];
|
||||||
on_attach = attach_keymaps,
|
init_options = {
|
||||||
cmd = ${
|
typescript = {};
|
||||||
if isList cfg.lsp.package
|
};
|
||||||
then expToLua cfg.lsp.package
|
before_init =
|
||||||
else ''{"${cfg.lsp.package}/bin/astro-ls", "--stdio"}''
|
mkLuaInline
|
||||||
}
|
/*
|
||||||
}
|
lua
|
||||||
'';
|
*/
|
||||||
|
''
|
||||||
|
function(_, config)
|
||||||
|
if config.init_options and config.init_options.typescript and not config.init_options.typescript.tsdk then
|
||||||
|
config.init_options.typescript.tsdk = util.get_typescript_server_path(config.root_dir)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: specify packages
|
defaultFormat = ["prettier"];
|
||||||
defaultFormat = "prettier";
|
formats = let
|
||||||
formats = {
|
parser = "${self.packages.${pkgs.stdenv.hostPlatform.system}.prettier-plugin-astro}/index.js";
|
||||||
|
in {
|
||||||
prettier = {
|
prettier = {
|
||||||
package = pkgs.prettier;
|
command = getExe pkgs.prettier;
|
||||||
};
|
options.ft_parsers.astro = "astro";
|
||||||
|
prepend_args = ["--plugin=${parser}"];
|
||||||
prettierd = {
|
|
||||||
package = pkgs.prettierd;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
biome = {
|
biome = {
|
||||||
package = pkgs.biome;
|
command = getExe pkgs.biome;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: specify packages
|
|
||||||
defaultDiagnosticsProvider = ["eslint_d"];
|
defaultDiagnosticsProvider = ["eslint_d"];
|
||||||
diagnosticsProviders = {
|
diagnosticsProviders = {
|
||||||
eslint_d = let
|
eslint_d = let
|
||||||
|
|
@ -69,6 +75,15 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
formatType =
|
||||||
|
deprecatedSingleOrListOf
|
||||||
|
"vim.languages.astro.format.type"
|
||||||
|
(coercedTo (enum ["prettierd"]) (_:
|
||||||
|
lib.warn
|
||||||
|
"vim.languages.astro.format.type: prettierd is deprecated, use prettier instead"
|
||||||
|
"prettier")
|
||||||
|
(enum (attrNames formats)));
|
||||||
in {
|
in {
|
||||||
options.vim.languages.astro = {
|
options.vim.languages.astro = {
|
||||||
enable = mkEnableOption "Astro language support";
|
enable = mkEnableOption "Astro language support";
|
||||||
|
|
@ -81,34 +96,20 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Astro LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Astro LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
server = mkOption {
|
type = deprecatedSingleOrListOf "vim.language.astro.lsp.servers" (enum (attrNames servers));
|
||||||
type = enum (attrNames servers);
|
default = defaultServers;
|
||||||
default = defaultServer;
|
|
||||||
description = "Astro LSP server to use";
|
description = "Astro LSP server to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
example = ''[lib.getExe pkgs.astro-language-server "--minify" "--stdio"]'';
|
|
||||||
description = "Astro LSP server package, or the command to run as a list of strings";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
format = {
|
format = {
|
||||||
enable = mkEnableOption "Astro formatting" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "Astro formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "Astro formatter to use";
|
type = formatType;
|
||||||
type = enum (attrNames formats);
|
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
description = "Astro formatter to use";
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Astro formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -130,16 +131,25 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.astro-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.astro = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.astro = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -5,38 +5,35 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkOption mkEnableOption literalExpression;
|
inherit (lib.options) mkOption mkEnableOption;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum bool;
|
||||||
inherit (lib.types) enum either package listOf str bool;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.types) diagnostics mkGrammarOption;
|
inherit (lib.nvim.types) diagnostics mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.bash;
|
cfg = config.vim.languages.bash;
|
||||||
|
|
||||||
defaultServer = "bash-ls";
|
defaultServers = ["bash-ls"];
|
||||||
servers = {
|
servers = {
|
||||||
bash-ls = {
|
bash-ls = {
|
||||||
package = pkgs.bash-language-server;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.bash-language-server) "start"];
|
||||||
lspconfig.bashls.setup{
|
filetypes = ["bash" "sh"];
|
||||||
capabilities = capabilities;
|
root_markers = [".git"];
|
||||||
on_attach = default_on_attach;
|
settings = {
|
||||||
cmd = ${
|
basheIde = {
|
||||||
if isList cfg.lsp.package
|
globPattern = mkLuaInline "vim.env.GLOB_PATTERN or '*@(.sh|.inc|.bash|.command)'";
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${cfg.lsp.package}/bin/bash-language-server", "start"}''
|
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "shfmt";
|
defaultFormat = ["shfmt"];
|
||||||
formats = {
|
formats = {
|
||||||
shfmt = {
|
shfmt = {
|
||||||
package = pkgs.shfmt;
|
command = getExe pkgs.shfmt;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -56,38 +53,24 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Enable Bash LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Bash LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
server = mkOption {
|
type = deprecatedSingleOrListOf "vim.language.bash.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "Bash LSP server to use";
|
description = "Bash LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "bash-language-server package, or the command to run as a list of strings";
|
|
||||||
example = literalExpression ''[lib.getExe pkgs.bash-language-server "start"]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = pkgs.bash-language-server;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
format = {
|
format = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
description = "Enable Bash formatting";
|
|
||||||
type = bool;
|
type = bool;
|
||||||
default = config.vim.languages.enableFormat;
|
default = config.vim.languages.enableFormat;
|
||||||
|
description = "Enable Bash formatting";
|
||||||
};
|
};
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "Bash formatter to use";
|
type = deprecatedSingleOrListOf "vim.language.bash.format.type" (enum (attrNames formats));
|
||||||
type = enum (attrNames formats);
|
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
description = "Bash formatter to use";
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Bash formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -108,16 +91,25 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.bash-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.sh = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.sh = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -5,47 +5,139 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.lists) isList;
|
|
||||||
inherit (lib.strings) optionalString;
|
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.types) bool enum package either listOf str nullOr;
|
inherit (lib.types) bool enum package;
|
||||||
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.dag) entryAfter;
|
inherit (lib.nvim.dag) entryAfter;
|
||||||
|
|
||||||
packageToCmd = package: defaultCmd:
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{ "${cfg.lsp.package}/bin/${defaultCmd}" }'';
|
|
||||||
|
|
||||||
cfg = config.vim.languages.clang;
|
cfg = config.vim.languages.clang;
|
||||||
|
|
||||||
defaultServer = "clangd";
|
defaultServers = ["clangd"];
|
||||||
servers = {
|
servers = {
|
||||||
ccls = {
|
ccls = {
|
||||||
package = pkgs.ccls;
|
cmd = [(getExe pkgs.ccls)];
|
||||||
lspConfig = ''
|
filetypes = ["c" "cpp" "objc" "objcpp" "cuda"];
|
||||||
lspconfig.ccls.setup{
|
offset_encoding = "utf-32";
|
||||||
capabilities = capabilities;
|
root_markers = ["compile_commands.json" ".ccls" ".git"];
|
||||||
on_attach=default_on_attach;
|
workspace_required = true;
|
||||||
cmd = ${packageToCmd cfg.lsp.package "ccls"};
|
on_attach = mkLuaInline ''
|
||||||
${optionalString (cfg.lsp.opts != null) "init_options = ${cfg.lsp.opts}"}
|
function(client, bufnr)
|
||||||
}
|
local function switch_source_header(bufnr)
|
||||||
|
local method_name = "textDocument/switchSourceHeader"
|
||||||
|
local params = vim.lsp.util.make_text_document_params(bufnr)
|
||||||
|
client:request(method_name, params, function(err, result)
|
||||||
|
if err then
|
||||||
|
error(tostring(err))
|
||||||
|
end
|
||||||
|
if not result then
|
||||||
|
vim.notify('corresponding file cannot be determined')
|
||||||
|
return
|
||||||
|
end
|
||||||
|
vim.cmd.edit(vim.uri_to_fname(result))
|
||||||
|
end, bufnr)
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.api.nvim_buf_create_user_command(
|
||||||
|
bufnr,
|
||||||
|
"LspCclsSwitchSourceHeader",
|
||||||
|
function(arg)
|
||||||
|
switch_source_header(client, 0)
|
||||||
|
end,
|
||||||
|
{desc = "Switch between source/header"}
|
||||||
|
)
|
||||||
|
end
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
clangd = {
|
clangd = {
|
||||||
package = pkgs.clang-tools;
|
cmd = ["${pkgs.clang-tools}/bin/clangd"];
|
||||||
lspConfig = ''
|
filetypes = ["c" "cpp" "objc" "objcpp" "cuda" "proto"];
|
||||||
local clangd_cap = capabilities
|
root_markers = [
|
||||||
-- use same offsetEncoding as null-ls
|
".clangd"
|
||||||
clangd_cap.offsetEncoding = {"utf-16"}
|
".clang-tidy"
|
||||||
lspconfig.clangd.setup{
|
".clang-format"
|
||||||
capabilities = clangd_cap;
|
"compile_commands.json"
|
||||||
on_attach=default_on_attach;
|
"compile_flags.txt"
|
||||||
cmd = ${packageToCmd cfg.lsp.package "clangd"};
|
"configure.ac"
|
||||||
${optionalString (cfg.lsp.opts != null) "init_options = ${cfg.lsp.opts}"}
|
".git"
|
||||||
}
|
];
|
||||||
|
capabilities = {
|
||||||
|
textDocument = {
|
||||||
|
completion = {
|
||||||
|
editsNearCursor = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
offsetEncoding = ["utf-8" "utf-16"];
|
||||||
|
};
|
||||||
|
on_attach = mkLuaInline ''
|
||||||
|
function(client, bufnr)
|
||||||
|
local function switch_source_header(bufnr)
|
||||||
|
local method_name = "textDocument/switchSourceHeader"
|
||||||
|
local client = vim.lsp.get_clients({ bufnr = bufnr, name = "clangd", })[1]
|
||||||
|
if not client then
|
||||||
|
return vim.notify(('method %s is not supported by any servers active on the current buffer'):format(method_name))
|
||||||
|
end
|
||||||
|
local params = vim.lsp.util.make_text_document_params(bufnr)
|
||||||
|
client.request(method_name, params, function(err, result)
|
||||||
|
if err then
|
||||||
|
error(tostring(err))
|
||||||
|
end
|
||||||
|
if not result then
|
||||||
|
vim.notify('corresponding file cannot be determined')
|
||||||
|
return
|
||||||
|
end
|
||||||
|
vim.cmd.edit(vim.uri_to_fname(result))
|
||||||
|
end, bufnr)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function symbol_info()
|
||||||
|
local bufnr = vim.api.nvim_get_current_buf()
|
||||||
|
local clangd_client = vim.lsp.get_clients({ bufnr = bufnr, name = "clangd" })[1]
|
||||||
|
if not clangd_client or not clangd_client.supports_method 'textDocument/symbolInfo' then
|
||||||
|
return vim.notify('Clangd client not found', vim.log.levels.ERROR)
|
||||||
|
end
|
||||||
|
local win = vim.api.nvim_get_current_win()
|
||||||
|
local params = vim.lsp.util.make_position_params(win, clangd_client.offset_encoding)
|
||||||
|
clangd_client:request('textDocument/symbolInfo', params, function(err, res)
|
||||||
|
if err or #res == 0 then
|
||||||
|
-- Clangd always returns an error, there is not reason to parse it
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local container = string.format('container: %s', res[1].containerName) ---@type string
|
||||||
|
local name = string.format('name: %s', res[1].name) ---@type string
|
||||||
|
vim.lsp.util.open_floating_preview({ name, container }, "", {
|
||||||
|
height = 2,
|
||||||
|
width = math.max(string.len(name), string.len(container)),
|
||||||
|
focusable = false,
|
||||||
|
focus = false,
|
||||||
|
border = 'single',
|
||||||
|
title = 'Symbol Info',
|
||||||
|
})
|
||||||
|
end, bufnr)
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.api.nvim_buf_create_user_command(
|
||||||
|
bufnr,
|
||||||
|
"ClangdSwitchSourceHeader",
|
||||||
|
function(arg)
|
||||||
|
switch_source_header(0)
|
||||||
|
end,
|
||||||
|
{desc = "Switch between source/header"}
|
||||||
|
)
|
||||||
|
|
||||||
|
vim.api.nvim_buf_create_user_command(
|
||||||
|
bufnr,
|
||||||
|
"ClangdShowSymbolInfo",
|
||||||
|
function(arg)
|
||||||
|
symbol_info()
|
||||||
|
end,
|
||||||
|
{desc = "Show symbol info"}
|
||||||
|
)
|
||||||
|
end
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -100,23 +192,10 @@ in {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "clang LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "clang LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
description = "The clang LSP server to use";
|
description = "The clang LSP server to use";
|
||||||
type = enum (attrNames servers);
|
type = deprecatedSingleOrListOf "vim.language.clang.lsp.servers" (enum (attrNames servers));
|
||||||
default = defaultServer;
|
default = defaultServers;
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "clang LSP server package, or the command to run as a list of strings";
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server " - data " " ~/.cache/jdtls/workspace "]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
|
||||||
|
|
||||||
opts = mkOption {
|
|
||||||
description = "Options to pass to clang LSP server";
|
|
||||||
type = nullOr str;
|
|
||||||
default = null;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -150,9 +229,12 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (name: {
|
||||||
vim.lsp.lspconfig.sources.clang-lsp = servers.${cfg.lsp.server}.lspConfig;
|
inherit name;
|
||||||
|
value = servers.${name};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.dap.enable {
|
(mkIf cfg.dap.enable {
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,25 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum listOf;
|
||||||
inherit (lib.types) either listOf package str;
|
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.clojure;
|
cfg = config.vim.languages.clojure;
|
||||||
|
|
||||||
|
defaultServers = ["clojure-lsp"];
|
||||||
|
servers = {
|
||||||
|
clojure-lsp = {
|
||||||
|
enable = true;
|
||||||
|
cmd = [(getExe pkgs.clojure-lsp)];
|
||||||
|
filetypes = ["clojure" "edn"];
|
||||||
|
root_markers = ["project.clj" "deps.edn" "build.boot" "shadow-cljs.edn" ".git" "bb.edn"];
|
||||||
|
};
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options.vim.languages.clojure = {
|
options.vim.languages.clojure = {
|
||||||
enable = mkEnableOption "Clojure language support";
|
enable = mkEnableOption "Clojure language support";
|
||||||
|
|
@ -24,28 +34,22 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Clojure LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Clojure LSP support" // {default = config.vim.lsp.enable;};
|
||||||
package = mkOption {
|
servers = mkOption {
|
||||||
type = either package (listOf str);
|
type = listOf (enum (attrNames servers));
|
||||||
default = pkgs.clojure-lsp;
|
default = defaultServers;
|
||||||
description = "Clojure LSP";
|
description = "Clojure LSP server to use";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.clojure-lsp = ''
|
mapListToAttrs (n: {
|
||||||
lspconfig.clojure_lsp.setup {
|
name = n;
|
||||||
capabilities = capabilities;
|
value = servers.${n};
|
||||||
on_attach = default_on_attach;
|
})
|
||||||
cmd = ${
|
cfg.lsp.servers;
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${getExe cfg.lsp.package}"}''
|
|
||||||
};
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.treesitter.enable {
|
(mkIf cfg.treesitter.enable {
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,16 @@
|
||||||
options,
|
options,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames concatMap;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.types) either listOf package str enum;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.meta) getExe;
|
||||||
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.strings) optionalString;
|
inherit (lib.strings) optionalString;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
lspKeyConfig = config.vim.lsp.mappings;
|
lspKeyConfig = config.vim.lsp.mappings;
|
||||||
lspKeyOptions = options.vim.lsp.mappings;
|
lspKeyOptions = options.vim.lsp.mappings;
|
||||||
|
|
@ -25,58 +27,147 @@
|
||||||
# Omnisharp doesn't have colors in popup docs for some reason, and I've also
|
# Omnisharp doesn't have colors in popup docs for some reason, and I've also
|
||||||
# seen mentions of it being way slower, so until someone finds missing
|
# seen mentions of it being way slower, so until someone finds missing
|
||||||
# functionality, this will be the default.
|
# functionality, this will be the default.
|
||||||
defaultServer = "csharp_ls";
|
defaultServers = ["csharp_ls"];
|
||||||
servers = {
|
servers = {
|
||||||
omnisharp = {
|
omnisharp = {
|
||||||
package = pkgs.omnisharp-roslyn;
|
cmd = mkLuaInline ''
|
||||||
internalFormatter = true;
|
{
|
||||||
lspConfig = ''
|
${toLuaObject (getExe pkgs.omnisharp-roslyn)},
|
||||||
lspconfig.omnisharp.setup {
|
'-z', -- https://github.com/OmniSharp/omnisharp-vscode/pull/4300
|
||||||
capabilities = capabilities,
|
'--hostPID',
|
||||||
on_attach = function(client, bufnr)
|
tostring(vim.fn.getpid()),
|
||||||
default_on_attach(client, bufnr)
|
'DotNet:enablePackageRestore=false',
|
||||||
|
'--encoding',
|
||||||
local oe = require("omnisharp_extended")
|
'utf-8',
|
||||||
${mkLspBinding "goToDefinition" "oe.lsp_definition"}
|
'--languageserver',
|
||||||
${mkLspBinding "goToType" "oe.lsp_type_definition"}
|
|
||||||
${mkLspBinding "listReferences" "oe.lsp_references"}
|
|
||||||
${mkLspBinding "listImplementations" "oe.lsp_implementation"}
|
|
||||||
end,
|
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else "{'${cfg.lsp.package}/bin/OmniSharp'}"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
filetypes = ["cs" "vb"];
|
||||||
|
root_dir = mkLuaInline ''
|
||||||
|
function(bufnr, on_dir)
|
||||||
|
local function find_root_pattern(fname, lua_pattern)
|
||||||
|
return vim.fs.root(0, function(name, path)
|
||||||
|
return name:match(lua_pattern)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
|
on_dir(find_root_pattern(fname, "%.sln$") or find_root_pattern(fname, "%.csproj$"))
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
init_options = {};
|
||||||
|
capabilities = {
|
||||||
|
workspace = {
|
||||||
|
workspaceFolders = false; # https://github.com/OmniSharp/omnisharp-roslyn/issues/909
|
||||||
|
};
|
||||||
|
};
|
||||||
|
on_attach = mkLuaInline ''
|
||||||
|
function(client, bufnr)
|
||||||
|
local oe = require("omnisharp_extended")
|
||||||
|
${mkLspBinding "goToDefinition" "oe.lsp_definition"}
|
||||||
|
${mkLspBinding "goToType" "oe.lsp_type_definition"}
|
||||||
|
${mkLspBinding "listReferences" "oe.lsp_references"}
|
||||||
|
${mkLspBinding "listImplementations" "oe.lsp_implementation"}
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
settings = {
|
||||||
|
FormattingOptions = {
|
||||||
|
# Enables support for reading code style, naming convention and analyzer
|
||||||
|
# settings from .editorconfig.
|
||||||
|
EnableEditorConfigSupport = true;
|
||||||
|
# Specifies whether 'using' directives should be grouped and sorted during
|
||||||
|
# document formatting.
|
||||||
|
OrganizeImports = null;
|
||||||
|
};
|
||||||
|
MsBuild = {
|
||||||
|
# If true, MSBuild project system will only load projects for files that
|
||||||
|
# were opened in the editor. This setting is useful for big C# codebases
|
||||||
|
# and allows for faster initialization of code navigation features only
|
||||||
|
# for projects that are relevant to code that is being edited. With this
|
||||||
|
# setting enabled OmniSharp may load fewer projects and may thus display
|
||||||
|
# incomplete reference lists for symbols.
|
||||||
|
LoadProjectsOnDemand = null;
|
||||||
|
};
|
||||||
|
RoslynExtensionsOptions = {
|
||||||
|
# Enables support for roslyn analyzers, code fixes and rulesets.
|
||||||
|
EnableAnalyzersSupport = null;
|
||||||
|
# Enables support for showing unimported types and unimported extension
|
||||||
|
# methods in completion lists. When committed, the appropriate using
|
||||||
|
# directive will be added at the top of the current file. This option can
|
||||||
|
# have a negative impact on initial completion responsiveness;
|
||||||
|
# particularly for the first few completion sessions after opening a
|
||||||
|
# solution.
|
||||||
|
EnableImportCompletion = null;
|
||||||
|
# Only run analyzers against open files when 'enableRoslynAnalyzers' is
|
||||||
|
# true
|
||||||
|
AnalyzeOpenDocumentsOnly = null;
|
||||||
|
# Enables the possibility to see the code in external nuget dependencies
|
||||||
|
EnableDecompilationSupport = null;
|
||||||
|
};
|
||||||
|
RenameOptions = {
|
||||||
|
RenameInComments = null;
|
||||||
|
RenameOverloads = null;
|
||||||
|
RenameInStrings = null;
|
||||||
|
};
|
||||||
|
Sdk = {
|
||||||
|
# Specifies whether to include preview versions of the .NET SDK when
|
||||||
|
# determining which version to use for project loading.
|
||||||
|
IncludePrereleases = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
csharp_ls = {
|
csharp_ls = {
|
||||||
package = pkgs.csharp-ls;
|
cmd = [(lib.getExe pkgs.csharp-ls)];
|
||||||
internalFormatter = true;
|
filetypes = ["cs"];
|
||||||
lspConfig = ''
|
root_dir = mkLuaInline ''
|
||||||
local extended_handler = require("csharpls_extended").handler
|
function(bufnr, on_dir)
|
||||||
|
local function find_root_pattern(fname, lua_pattern)
|
||||||
|
return vim.fs.root(0, function(name, path)
|
||||||
|
return name:match(lua_pattern)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
lspconfig.csharp_ls.setup {
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
capabilities = capabilities,
|
on_dir(find_root_pattern(fname, "%.sln$") or find_root_pattern(fname, "%.csproj$"))
|
||||||
on_attach = default_on_attach,
|
end
|
||||||
handlers = {
|
'';
|
||||||
["textDocument/definition"] = extended_handler,
|
init_options = {
|
||||||
["textDocument/typeDefinition"] = extended_handler
|
AutomaticWorkspaceInit = true;
|
||||||
},
|
};
|
||||||
cmd = ${
|
};
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
roslyn_ls = {
|
||||||
else "{'${cfg.lsp.package}/bin/csharp-ls'}"
|
cmd = mkLuaInline ''
|
||||||
}
|
{
|
||||||
|
${toLuaObject (getExe pkgs.roslyn-ls)},
|
||||||
|
'--logLevel=Warning',
|
||||||
|
'--extensionLogDirectory=' .. vim.fs.dirname(vim.lsp.get_log_path()),
|
||||||
|
'--stdio',
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
filetypes = ["cs"];
|
||||||
|
root_dir = mkLuaInline ''
|
||||||
|
function(bufnr, on_dir)
|
||||||
|
local function find_root_pattern(fname, lua_pattern)
|
||||||
|
return vim.fs.root(0, function(name, path)
|
||||||
|
return name:match(lua_pattern)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
|
on_dir(find_root_pattern(fname, "%.sln$") or find_root_pattern(fname, "%.csproj$"))
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
init_options = {};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
extraServerPlugins = {
|
extraServerPlugins = {
|
||||||
omnisharp = ["omnisharp-extended-lsp-nvim"];
|
omnisharp = ["omnisharp-extended-lsp-nvim"];
|
||||||
csharp_ls = ["csharpls-extended-lsp-nvim"];
|
csharp_ls = ["csharpls-extended-lsp-nvim"];
|
||||||
|
roslyn_ls = [];
|
||||||
};
|
};
|
||||||
|
|
||||||
cfg = config.vim.languages.csharp;
|
cfg = config.vim.languages.csharp;
|
||||||
|
|
@ -92,16 +183,10 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "C# LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "C# LSP support" // {default = config.vim.lsp.enable;};
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
description = "C# LSP server to use";
|
description = "C# LSP server to use";
|
||||||
type = enum (attrNames servers);
|
type = deprecatedSingleOrListOf "vim.language.csharp.lsp.servers" (enum (attrNames servers));
|
||||||
default = defaultServer;
|
default = defaultServers;
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "C# LSP server package, or the command to run as a list of strings";
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -114,9 +199,13 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.startPlugins = extraServerPlugins.${cfg.lsp.server} or [];
|
vim.startPlugins = concatMap (server: extraServerPlugins.${server}) cfg.lsp.servers;
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.csharp-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = servers.${name};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,65 +8,40 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
|
||||||
|
|
||||||
cfg = config.vim.languages.css;
|
cfg = config.vim.languages.css;
|
||||||
|
|
||||||
defaultServer = "vscode-langservers-extracted";
|
defaultServer = ["cssls"];
|
||||||
servers = {
|
servers = {
|
||||||
vscode-langservers-extracted = {
|
cssls = {
|
||||||
package = pkgs.vscode-langservers-extracted;
|
cmd = ["${pkgs.vscode-langservers-extracted}/bin/vscode-css-language-server" "--stdio"];
|
||||||
lspConfig = ''
|
filetypes = ["css" "scss" "less"];
|
||||||
-- enable (broadcasting) snippet capability for completion
|
# needed to enable formatting
|
||||||
-- see <https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#cssls>
|
init_options = {provideFormatter = true;};
|
||||||
local css_capabilities = vim.lsp.protocol.make_client_capabilities()
|
root_markers = [".git" "package.json"];
|
||||||
css_capabilities.textDocument.completion.completionItem.snippetSupport = true
|
settings = {
|
||||||
|
css.validate = true;
|
||||||
-- cssls setup
|
scss.validate = true;
|
||||||
lspconfig.cssls.setup {
|
less.validate = true;
|
||||||
capabilities = css_capabilities;
|
};
|
||||||
on_attach = default_on_attach;
|
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${cfg.lsp.package}/bin/vscode-css-language-server", "--stdio"}''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "prettier";
|
defaultFormat = ["prettier"];
|
||||||
formats = {
|
formats = {
|
||||||
prettier = {
|
prettier = {
|
||||||
package = pkgs.prettier;
|
command = getExe pkgs.prettier;
|
||||||
};
|
};
|
||||||
|
|
||||||
prettierd = {
|
prettierd = {
|
||||||
package = pkgs.prettierd;
|
command = getExe pkgs.prettierd;
|
||||||
nullConfig = ''
|
|
||||||
table.insert(
|
|
||||||
ls_sources,
|
|
||||||
null_ls.builtins.formatting.prettier.with({
|
|
||||||
command = "${cfg.format.package}/bin/prettierd",
|
|
||||||
})
|
|
||||||
)
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
biome = {
|
biome = {
|
||||||
package = pkgs.biome;
|
command = getExe pkgs.biome;
|
||||||
nullConfig = ''
|
|
||||||
table.insert(
|
|
||||||
ls_sources,
|
|
||||||
null_ls.builtins.formatting.biome.with({
|
|
||||||
command = "${cfg.format.package}/bin/biome",
|
|
||||||
})
|
|
||||||
)
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -82,17 +57,10 @@ in {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "CSS LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "CSS LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
description = "CSS LSP server to use";
|
type = deprecatedSingleOrListOf "vim.language.css.lsp.servers" (enum (attrNames servers));
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
default = defaultServer;
|
||||||
};
|
description = "CSS LSP server to use";
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "CSS LSP server package, or the command to run as a list of strings";
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server " - data " " ~/.cache/jdtls/workspace "]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -101,15 +69,9 @@ in {
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "CSS formatter to use";
|
description = "CSS formatter to use";
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.css.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "CSS formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -120,16 +82,25 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.css-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = servers.${name};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.css = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.css = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,17 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption;
|
||||||
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.types) package;
|
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption;
|
||||||
|
|
||||||
|
lspOptions = {
|
||||||
|
cmd = [(getExe pkgs.cue) "lsp"];
|
||||||
|
filetypes = ["cue"];
|
||||||
|
root_markers = ["cue.mod" ".git"];
|
||||||
|
};
|
||||||
|
|
||||||
cfg = config.vim.languages.cue;
|
cfg = config.vim.languages.cue;
|
||||||
in {
|
in {
|
||||||
options.vim.languages.cue = {
|
options.vim.languages.cue = {
|
||||||
|
|
@ -22,12 +28,6 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "CUE LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "CUE LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = package;
|
|
||||||
default = pkgs.cue;
|
|
||||||
description = "cue lsp implementation";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -38,14 +38,7 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers.cue = lspOptions;
|
||||||
vim.lsp.lspconfig.sources.cue-lsp = ''
|
|
||||||
lspconfig.cue.setup {
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach = default_on_attach,
|
|
||||||
cmd = {"${cfg.lsp.package}/bin/cue", "lsp"},
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,34 +6,38 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.trivial) boolToString;
|
inherit (lib.trivial) boolToString;
|
||||||
inherit (lib.lists) isList;
|
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.types) enum either listOf package nullOr str bool;
|
inherit (lib.types) enum package nullOr str bool;
|
||||||
inherit (lib.strings) optionalString;
|
inherit (lib.strings) optionalString;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
|
||||||
inherit (lib.nvim.dag) entryAfter;
|
inherit (lib.nvim.dag) entryAfter;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.dart;
|
cfg = config.vim.languages.dart;
|
||||||
ftcfg = cfg.flutter-tools;
|
ftcfg = cfg.flutter-tools;
|
||||||
|
|
||||||
defaultServer = "dart";
|
defaultServers = ["dart"];
|
||||||
servers = {
|
servers = {
|
||||||
dart = {
|
dart = {
|
||||||
package = pkgs.dart;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.dart) "language-server" "--protocol=lsp"];
|
||||||
lspconfig.dartls.setup{
|
filetypes = ["dart"];
|
||||||
capabilities = capabilities;
|
root_markers = ["pubspec.yaml"];
|
||||||
on_attach=default_on_attach;
|
init_options = {
|
||||||
cmd = ${
|
onlyAnalyzeProjectsWithOpenFiles = true;
|
||||||
if isList cfg.lsp.package
|
suggestFromUnimportedLibraries = true;
|
||||||
then expToLua cfg.lsp.package
|
closingLabels = true;
|
||||||
else ''{"${cfg.lsp.package}/bin/dart", "language-server", "--protocol=lsp"}''
|
outline = true;
|
||||||
|
flutterOutline = true;
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
dart = {
|
||||||
|
completeFunctionCalls = true;
|
||||||
|
showTodos = true;
|
||||||
};
|
};
|
||||||
${optionalString (cfg.lsp.opts != null) "init_options = ${cfg.lsp.dartOpts}"}
|
};
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -46,23 +50,11 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Dart LSP support";
|
enable = mkEnableOption "Dart LSP support" // {default = config.vim.lsp.enable;};
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
description = "The Dart LSP server to use";
|
type = deprecatedSingleOrListOf "vim.language.dart.lsp.servers" (enum (attrNames servers));
|
||||||
type = enum (attrNames servers);
|
default = defaultServers;
|
||||||
default = defaultServer;
|
description = "Dart LSP server to use";
|
||||||
};
|
|
||||||
package = mkOption {
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server "-data" "~/.cache/jdtls/workspace"]'';
|
|
||||||
description = "Dart LSP server package, or the command to run as a list of strings";
|
|
||||||
};
|
|
||||||
|
|
||||||
opts = mkOption {
|
|
||||||
type = nullOr str;
|
|
||||||
default = null;
|
|
||||||
description = "Options to pass to Dart LSP server";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -131,19 +123,23 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config.vim = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
(mkIf cfg.treesitter.enable {
|
(mkIf cfg.treesitter.enable {
|
||||||
treesitter.enable = true;
|
vim.treesitter.enable = true;
|
||||||
treesitter.grammars = [cfg.treesitter.package];
|
vim.treesitter.grammars = [cfg.treesitter.package];
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
lsp.lspconfig.sources.dart-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf ftcfg.enable {
|
(mkIf ftcfg.enable {
|
||||||
startPlugins = [
|
vim.startPlugins = [
|
||||||
(
|
(
|
||||||
if ftcfg.enableNoResolvePatch
|
if ftcfg.enableNoResolvePatch
|
||||||
then "flutter-tools-patched"
|
then "flutter-tools-patched"
|
||||||
|
|
@ -152,7 +148,7 @@ in {
|
||||||
"plenary-nvim"
|
"plenary-nvim"
|
||||||
];
|
];
|
||||||
|
|
||||||
pluginRC.flutter-tools = entryAfter ["lsp-setup"] ''
|
vim.pluginRC.flutter-tools = entryAfter ["lsp-servers"] ''
|
||||||
require('flutter-tools').setup {
|
require('flutter-tools').setup {
|
||||||
${optionalString (ftcfg.flutterPackage != null) "flutter_path = \"${ftcfg.flutterPackage}/bin/flutter\","}
|
${optionalString (ftcfg.flutterPackage != null) "flutter_path = \"${ftcfg.flutterPackage}/bin/flutter\","}
|
||||||
lsp = {
|
lsp = {
|
||||||
|
|
@ -165,7 +161,6 @@ in {
|
||||||
},
|
},
|
||||||
|
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
on_attach = default_on_attach;
|
|
||||||
},
|
},
|
||||||
${optionalString cfg.dap.enable ''
|
${optionalString cfg.dap.enable ''
|
||||||
debugger = {
|
debugger = {
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ in {
|
||||||
./html.nix
|
./html.nix
|
||||||
./haskell.nix
|
./haskell.nix
|
||||||
./java.nix
|
./java.nix
|
||||||
|
./json.nix
|
||||||
./lua.nix
|
./lua.nix
|
||||||
./markdown.nix
|
./markdown.nix
|
||||||
./nim.nix
|
./nim.nix
|
||||||
|
|
@ -29,6 +30,7 @@ in {
|
||||||
./ocaml.nix
|
./ocaml.nix
|
||||||
./php.nix
|
./php.nix
|
||||||
./python.nix
|
./python.nix
|
||||||
|
./qml.nix
|
||||||
./r.nix
|
./r.nix
|
||||||
./rust.nix
|
./rust.nix
|
||||||
./scala.nix
|
./scala.nix
|
||||||
|
|
@ -46,6 +48,7 @@ in {
|
||||||
./wgsl.nix
|
./wgsl.nix
|
||||||
./yaml.nix
|
./yaml.nix
|
||||||
./ruby.nix
|
./ruby.nix
|
||||||
|
./just.nix
|
||||||
|
|
||||||
# This is now a hard deprecation.
|
# This is now a hard deprecation.
|
||||||
(mkRenamedOptionModule ["vim" "languages" "enableLSP"] ["vim" "lsp" "enable"])
|
(mkRenamedOptionModule ["vim" "languages" "enableLSP"] ["vim" "lsp" "enable"])
|
||||||
|
|
|
||||||
|
|
@ -7,40 +7,43 @@
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.dag) entryAnywhere;
|
inherit (lib.nvim.dag) entryAnywhere;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.elixir;
|
cfg = config.vim.languages.elixir;
|
||||||
|
|
||||||
defaultServer = "elixirls";
|
defaultServers = ["elixirls"];
|
||||||
servers = {
|
servers = {
|
||||||
elixirls = {
|
elixirls = {
|
||||||
package = pkgs.elixir-ls;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.elixir-ls)];
|
||||||
-- elixirls setup
|
filetypes = ["elixir" "eelixir" "heex" "surface"];
|
||||||
lspconfig.elixirls.setup {
|
root_dir =
|
||||||
capabilities = capabilities,
|
mkLuaInline
|
||||||
on_attach = default_on_attach,
|
/*
|
||||||
cmd = ${
|
lua
|
||||||
if isList cfg.lsp.package
|
*/
|
||||||
then expToLua cfg.lsp.package
|
''
|
||||||
else ''{"${cfg.lsp.package}/bin/elixir-ls"}''
|
function(bufnr, on_dir)
|
||||||
}
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
}
|
local matches = vim.fs.find({ 'mix.exs' }, { upward = true, limit = 2, path = fname })
|
||||||
'';
|
local child_or_root_path, maybe_umbrella_path = unpack(matches)
|
||||||
|
local root_dir = vim.fs.dirname(maybe_umbrella_path or child_or_root_path)
|
||||||
|
|
||||||
|
on_dir(root_dir)
|
||||||
|
end
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "mix";
|
defaultFormat = ["mix"];
|
||||||
formats = {
|
formats = {
|
||||||
mix = {
|
mix = {
|
||||||
package = pkgs.elixir;
|
command = "${pkgs.elixir}/bin/mix";
|
||||||
config = {
|
|
||||||
command = "${cfg.format.package}/bin/mix";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -50,22 +53,16 @@ in {
|
||||||
treesitter = {
|
treesitter = {
|
||||||
enable = mkEnableOption "Elixir treesitter" // {default = config.vim.languages.enableTreesitter;};
|
enable = mkEnableOption "Elixir treesitter" // {default = config.vim.languages.enableTreesitter;};
|
||||||
package = mkGrammarOption pkgs "elixir";
|
package = mkGrammarOption pkgs "elixir";
|
||||||
|
heexPackage = mkGrammarOption pkgs "heex";
|
||||||
|
eexPackage = mkGrammarOption pkgs "eex";
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Elixir LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Elixir LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
server = mkOption {
|
type = deprecatedSingleOrListOf "vim.language.elixir.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "Elixir LSP server to use";
|
description = "Elixir LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Elixir LSP server package, or the command to run as a list of strings";
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server " - data " " ~/.cache/jdtls/workspace "]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -73,15 +70,9 @@ in {
|
||||||
enable = mkEnableOption "Elixir formatting" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "Elixir formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "Elixir formatter to use";
|
type = deprecatedSingleOrListOf "vim.language.elixir.format.type" (enum (attrNames formats));
|
||||||
type = enum (attrNames formats);
|
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
description = "Elixir formatter to use";
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Elixir formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -93,20 +84,34 @@ in {
|
||||||
config = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
(mkIf cfg.treesitter.enable {
|
(mkIf cfg.treesitter.enable {
|
||||||
vim.treesitter.enable = true;
|
vim.treesitter.enable = true;
|
||||||
vim.treesitter.grammars = [cfg.treesitter.package];
|
vim.treesitter.grammars = [
|
||||||
|
cfg.treesitter.package
|
||||||
|
cfg.treesitter.heexPackage
|
||||||
|
cfg.treesitter.eexPackage
|
||||||
|
];
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.elixir-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.elixir = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} =
|
formatters_by_ft.elixir = cfg.format.type;
|
||||||
formats.${cfg.format.type}.config;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,36 +6,55 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.types) either listOf package str enum;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
defaultServer = "fsautocomplete";
|
defaultServer = ["fsautocomplete"];
|
||||||
servers = {
|
servers = {
|
||||||
fsautocomplete = {
|
fsautocomplete = {
|
||||||
package = pkgs.fsautocomplete;
|
cmd = [(getExe pkgs.fsautocomplete) "--adaptive-lsp-server-enabled"];
|
||||||
internalFormatter = false;
|
filetypes = ["fsharp"];
|
||||||
lspConfig = ''
|
root_dir = mkLuaInline ''
|
||||||
lspconfig.fsautocomplete.setup {
|
function(bufnr, on_dir)
|
||||||
capabilities = capabilities;
|
on_dir(vim.fs.root(bufnr, function(name, path)
|
||||||
on_attach = default_on_attach;
|
return name == ".git" or name:match("%.sln$") or name:match("%.fsproj$")
|
||||||
cmd = ${
|
end))
|
||||||
if isList cfg.lsp.package
|
end
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else "{'${cfg.lsp.package}/bin/fsautocomplete'}"
|
|
||||||
},
|
|
||||||
}
|
|
||||||
'';
|
'';
|
||||||
|
init_options = {
|
||||||
|
AutomaticWorkspaceInit = true;
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
FSharp = {
|
||||||
|
keywordsAutocomplete = true;
|
||||||
|
ExternalAutocomplete = false;
|
||||||
|
Linter = true;
|
||||||
|
UnionCaseStubGeneration = true;
|
||||||
|
UnionCaseStubGenerationBody = ''failwith "Not Implemented"'';
|
||||||
|
RecordStubGeneration = true;
|
||||||
|
RecordStubGenerationBody = ''failwith "Not Implemented"'';
|
||||||
|
InterfaceStubGeneration = true;
|
||||||
|
InterfaceStubGenerationObjectIdentifier = "this";
|
||||||
|
InterfaceStubGenerationMethodBody = ''failwith "Not Implemented"'';
|
||||||
|
UnusedOpensAnalyzer = true;
|
||||||
|
UnusedDeclarationsAnalyzer = true;
|
||||||
|
UseSdkScripts = true;
|
||||||
|
SimplifyNameAnalyzer = true;
|
||||||
|
ResolveNamespaces = true;
|
||||||
|
EnableReferenceCodeLens = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "fantomas";
|
defaultFormat = ["fantomas"];
|
||||||
formats = {
|
formats = {
|
||||||
fantomas = {
|
fantomas = {
|
||||||
package = pkgs.fantomas;
|
command = getExe pkgs.fantomas;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -52,33 +71,20 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "F# LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "F# LSP support" // {default = config.vim.lsp.enable;};
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
type = enum (attrNames servers);
|
type = deprecatedSingleOrListOf "vim.language.fsharp.lsp.servers" (enum (attrNames servers));
|
||||||
default = defaultServer;
|
default = defaultServer;
|
||||||
description = "F# LSP server to use";
|
description = "F# LSP server to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
example = ''[lib.getExe pkgs.fsautocomplete "--state-directory" "~/.cache/fsautocomplete"]'';
|
|
||||||
description = "F# LSP server package, or the command to run as a list of strings";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
format = {
|
format = {
|
||||||
enable = mkEnableOption "F# formatting" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "F# formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.fsharp.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
description = "F# formatter to use";
|
description = "F# formatter to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
description = "F# formatter package";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -90,16 +96,25 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.fsharp-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = servers.${name};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.fsharp = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.fsharp = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -7,28 +7,20 @@
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.gleam;
|
cfg = config.vim.languages.gleam;
|
||||||
|
|
||||||
defaultServer = "gleam";
|
defaultServers = ["gleam"];
|
||||||
servers = {
|
servers = {
|
||||||
gleam = {
|
gleam = {
|
||||||
package = pkgs.gleam;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.gleam) "lsp"];
|
||||||
lspconfig.gleam.setup{
|
filetypes = ["gleam"];
|
||||||
capabilities = capabilities,
|
root_markers = ["gleam.toml" ".git"];
|
||||||
on_attach = default_on_attach,
|
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${cfg.lsp.package}/bin/gleam", "lsp"}''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -42,18 +34,11 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Gleam LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Gleam LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
server = mkOption {
|
type = deprecatedSingleOrListOf "vim.language.gleam.lsp.servers" (enum (attrNames servers));
|
||||||
type = enum (attrNames servers);
|
default = defaultServers;
|
||||||
default = defaultServer;
|
|
||||||
description = "Gleam LSP server to use";
|
description = "Gleam LSP server to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
description = "Gleam LSP server package, or the command to run as a list of strings";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -64,8 +49,12 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.gleam-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,45 +8,67 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption literalMD;
|
inherit (lib.options) mkEnableOption mkOption literalMD;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.types) bool enum either listOf package str;
|
inherit (lib.types) bool enum package;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
|
||||||
inherit (lib.nvim.dag) entryAfter;
|
inherit (lib.nvim.dag) entryAfter;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.go;
|
cfg = config.vim.languages.go;
|
||||||
|
|
||||||
defaultServer = "gopls";
|
defaultServers = ["gopls"];
|
||||||
servers = {
|
servers = {
|
||||||
gopls = {
|
gopls = {
|
||||||
package = pkgs.gopls;
|
cmd = [(getExe pkgs.gopls)];
|
||||||
lspConfig = ''
|
filetypes = ["go" "gomod" "gowork" "gotmpl"];
|
||||||
lspconfig.gopls.setup {
|
root_dir = mkLuaInline ''
|
||||||
capabilities = capabilities;
|
function(bufnr, on_dir)
|
||||||
on_attach = default_on_attach;
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
local function get_root(fname)
|
||||||
then expToLua cfg.lsp.package
|
if _G.nvf_gopls_mod_cache and fname:sub(1, #_G.nvf_gopls_mod_cache) == _G.nvf_gopls_mod_cache then
|
||||||
else ''{"${cfg.lsp.package}/bin/gopls", "serve"}''
|
local clients = vim.lsp.get_clients { name = 'gopls' }
|
||||||
},
|
if #clients > 0 then
|
||||||
}
|
return clients[#clients].config.root_dir
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return vim.fs.root(fname, 'go.work') or vim.fs.root(fname, 'go.mod') or vim.fs.root(fname, '.git')
|
||||||
|
end
|
||||||
|
|
||||||
|
-- see: https://github.com/neovim/nvim-lspconfig/issues/804
|
||||||
|
if _G.nvf_gopls_mod_cache then
|
||||||
|
on_dir(get_root(fname))
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local cmd = { 'go', 'env', 'GOMODCACHE' }
|
||||||
|
local ok, err = pcall(vim.system, cmd, { text = true }, function(output)
|
||||||
|
if output.code == 0 then
|
||||||
|
if output.stdout then
|
||||||
|
_G.nvf_gopls_mod_cache = vim.trim(output.stdout)
|
||||||
|
end
|
||||||
|
on_dir(get_root(fname))
|
||||||
|
else
|
||||||
|
vim.schedule(function()
|
||||||
|
vim.notify(('[gopls] cmd failed with code %d: %s\n%s'):format(output.code, cmd, output.stderr))
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
if not ok then vim.notify(('[gopls] cmd failed: %s\n%s'):format(cmd, err)) end
|
||||||
|
end
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "gofmt";
|
defaultFormat = ["gofmt"];
|
||||||
formats = {
|
formats = {
|
||||||
gofmt = {
|
gofmt = {
|
||||||
package = pkgs.go;
|
command = "${pkgs.go}/bin/gofmt";
|
||||||
config.command = "${cfg.format.package}/bin/gofmt";
|
|
||||||
};
|
};
|
||||||
gofumpt = {
|
gofumpt = {
|
||||||
package = pkgs.gofumpt;
|
command = getExe pkgs.gofumpt;
|
||||||
config.command = getExe cfg.format.package;
|
|
||||||
};
|
};
|
||||||
golines = {
|
golines = {
|
||||||
package = pkgs.golines;
|
command = "${pkgs.golines}/bin/golines";
|
||||||
config.command = "${cfg.format.package}/bin/golines";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -69,17 +91,10 @@ in {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Go LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Go LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.go.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "Go LSP server to use";
|
description = "Go LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Go LSP server package, or the command to run as a list of strings";
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server " - data " " ~/.cache/jdtls/workspace "]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -95,15 +110,9 @@ in {
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "Go formatter to use";
|
description = "Go formatter to use";
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.go.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Go formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
dap = {
|
dap = {
|
||||||
|
|
@ -134,15 +143,26 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.go-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = servers.${name};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.go = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = formats.${cfg.format.type}.config;
|
formatters_by_ft.go = cfg.format.type;
|
||||||
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,17 +4,64 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) isList;
|
inherit (builtins) isList attrNames;
|
||||||
inherit (lib.types) either package listOf str;
|
inherit (lib.types) either package enum listOf str;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.strings) optionalString;
|
inherit (lib.strings) optionalString;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption;
|
||||||
inherit (lib.nvim.dag) entryAfter;
|
inherit (lib.nvim.dag) entryAfter;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
|
inherit (lib.meta) getExe';
|
||||||
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (pkgs) haskellPackages;
|
inherit (pkgs) haskellPackages;
|
||||||
|
|
||||||
cfg = config.vim.languages.haskell;
|
cfg = config.vim.languages.haskell;
|
||||||
|
|
||||||
|
defaultServers = ["hls"];
|
||||||
|
servers = {
|
||||||
|
hls = {
|
||||||
|
enable = false;
|
||||||
|
cmd = [(getExe' pkgs.haskellPackages.haskell-language-server "haskell-language-server-wrapper") "--lsp"];
|
||||||
|
filetypes = ["haskell" "lhaskell"];
|
||||||
|
on_attach =
|
||||||
|
mkLuaInline
|
||||||
|
/*
|
||||||
|
lua
|
||||||
|
*/
|
||||||
|
''
|
||||||
|
function(client, bufnr)
|
||||||
|
local ht = require("haskell-tools")
|
||||||
|
local opts = { noremap = true, silent = true, buffer = bufnr }
|
||||||
|
vim.keymap.set('n', '<localleader>cl', vim.lsp.codelens.run, opts)
|
||||||
|
vim.keymap.set('n', '<localleader>hs', ht.hoogle.hoogle_signature, opts)
|
||||||
|
vim.keymap.set('n', '<localleader>ea', ht.lsp.buf_eval_all, opts)
|
||||||
|
vim.keymap.set('n', '<localleader>rr', ht.repl.toggle, opts)
|
||||||
|
vim.keymap.set('n', '<localleader>rf', function()
|
||||||
|
ht.repl.toggle(vim.api.nvim_buf_get_name(0))
|
||||||
|
end, opts)
|
||||||
|
vim.keymap.set('n', '<localleader>rq', ht.repl.quit, opts)
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
root_dir =
|
||||||
|
mkLuaInline
|
||||||
|
/*
|
||||||
|
lua
|
||||||
|
*/
|
||||||
|
''
|
||||||
|
function(bufnr, on_dir)
|
||||||
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
|
on_dir(util.root_pattern('hie.yaml', 'stack.yaml', 'cabal.project', '*.cabal', 'package.yaml')(fname))
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
settings = {
|
||||||
|
haskell = {
|
||||||
|
formattingProvider = "ormolu";
|
||||||
|
cabalFormattingProvider = "cabalfmt";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options.vim.languages.haskell = {
|
options.vim.languages.haskell = {
|
||||||
enable = mkEnableOption "Haskell support";
|
enable = mkEnableOption "Haskell support";
|
||||||
|
|
@ -25,21 +72,20 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "LSP support for Haskell" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Haskell LSP support" // {default = config.vim.lsp.enable;};
|
||||||
package = mkOption {
|
servers = mkOption {
|
||||||
description = "Haskell LSP package or command to run the Haskell LSP";
|
type = listOf (enum (attrNames servers));
|
||||||
example = ''[ (lib.getExe pkgs.haskellPackages.haskell-language-server) "--debug" ]'';
|
default = defaultServers;
|
||||||
default = haskellPackages.haskell-language-server;
|
description = "Haskell LSP server to use";
|
||||||
type = either package (listOf str);
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
dap = {
|
dap = {
|
||||||
enable = mkEnableOption "DAP support for Haskell" // {default = config.vim.languages.enableDAP;};
|
enable = mkEnableOption "DAP support for Haskell" // {default = config.vim.languages.enableDAP;};
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
description = "Haskell DAP package or command to run the Haskell DAP";
|
|
||||||
default = haskellPackages.haskell-debug-adapter;
|
default = haskellPackages.haskell-debug-adapter;
|
||||||
type = either package (listOf str);
|
type = either package (listOf str);
|
||||||
|
description = "Haskell DAP package or command to run the Haskell DAP";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -57,7 +103,7 @@ in {
|
||||||
startPlugins = ["haskell-tools-nvim"];
|
startPlugins = ["haskell-tools-nvim"];
|
||||||
luaConfigRC.haskell-tools-nvim =
|
luaConfigRC.haskell-tools-nvim =
|
||||||
entryAfter
|
entryAfter
|
||||||
["lsp-setup"]
|
["lsp-servers"]
|
||||||
''
|
''
|
||||||
vim.g.haskell_tools = {
|
vim.g.haskell_tools = {
|
||||||
${optionalString cfg.lsp.enable ''
|
${optionalString cfg.lsp.enable ''
|
||||||
|
|
@ -67,31 +113,13 @@ in {
|
||||||
enable = true,
|
enable = true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
hls = {
|
hls = ${toLuaObject servers.hls},
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${cfg.lsp.package}/bin/haskell-language-server-wrapper", "--lsp"}''
|
|
||||||
},
|
|
||||||
on_attach = function(client, bufnr, ht)
|
|
||||||
default_on_attach(client, bufnr, ht)
|
|
||||||
local opts = { noremap = true, silent = true, buffer = bufnr }
|
|
||||||
vim.keymap.set('n', '<localleader>cl', vim.lsp.codelens.run, opts)
|
|
||||||
vim.keymap.set('n', '<localleader>hs', ht.hoogle.hoogle_signature, opts)
|
|
||||||
vim.keymap.set('n', '<localleader>ea', ht.lsp.buf_eval_all, opts)
|
|
||||||
vim.keymap.set('n', '<localleader>rr', ht.repl.toggle, opts)
|
|
||||||
vim.keymap.set('n', '<localleader>rf', function()
|
|
||||||
ht.repl.toggle(vim.api.nvim_buf_get_name(0))
|
|
||||||
end, opts)
|
|
||||||
vim.keymap.set('n', '<localleader>rq', ht.repl.quit, opts)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
''}
|
''}
|
||||||
${optionalString cfg.dap.enable ''
|
${optionalString cfg.dap.enable ''
|
||||||
dap = {
|
dap = {
|
||||||
cmd = ${
|
cmd = ${
|
||||||
if isList cfg.dap.package
|
if isList cfg.dap.package
|
||||||
then expToLua cfg.dap.package
|
then toLuaObject cfg.dap.package
|
||||||
else ''{"${cfg.dap.package}/bin/haskell-debug-adapter"}''
|
else ''{"${cfg.dap.package}/bin/haskell-debug-adapter"}''
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -8,29 +8,26 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.types) package bool enum;
|
inherit (lib.types) bool enum listOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.hcl;
|
cfg = config.vim.languages.hcl;
|
||||||
|
|
||||||
defaultServer = "terraform-ls";
|
defaultServers = ["terraform-ls"];
|
||||||
servers = {
|
servers = {
|
||||||
terraform-ls = {
|
terraform-ls = {
|
||||||
package = pkgs.terraform-ls;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.terraform-ls) "serve"];
|
||||||
lspconfig.terraformls.setup {
|
filetypes = ["terraform" "terraform-vars"];
|
||||||
capabilities = capabilities,
|
root_markers = [".terraform" ".git"];
|
||||||
on_attach=default_on_attach,
|
|
||||||
cmd = {"${lib.getExe cfg.lsp.package}", "serve"},
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "hclfmt";
|
defaultFormat = ["hclfmt"];
|
||||||
formats = {
|
formats = {
|
||||||
hclfmt = {
|
hclfmt = {
|
||||||
package = pkgs.hclfmt;
|
command = getExe pkgs.hclfmt;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -43,12 +40,11 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "HCL LSP support (terraform-ls)" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "HCL LSP support" // {default = config.vim.lsp.enable;};
|
||||||
# TODO: (maybe, is it better?) it would be cooler to use vscode-extensions.hashicorp.hcl probably, shouldn't be too hard
|
servers = mkOption {
|
||||||
package = mkOption {
|
type = listOf (enum (attrNames servers));
|
||||||
type = package;
|
default = defaultServers;
|
||||||
default = servers.${defaultServer}.package;
|
description = "HCL LSP server to use";
|
||||||
description = "HCL language server package (terraform-ls)";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -59,15 +55,10 @@ in {
|
||||||
description = "Enable HCL formatting";
|
description = "Enable HCL formatting";
|
||||||
};
|
};
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.hcl.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
description = "HCL formatter to use";
|
description = "HCL formatter to use";
|
||||||
};
|
};
|
||||||
package = mkOption {
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
description = "HCL formatter package";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -96,18 +87,25 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources = lib.optionalAttrs (! config.vim.languages.terraform.lsp.enable) {
|
mapListToAttrs (n: {
|
||||||
terraform-ls = servers.${cfg.lsp.server}.lspConfig;
|
name = n;
|
||||||
};
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.hcl = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.hcl = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -4,44 +4,39 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames head;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkDefault mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.helm;
|
cfg = config.vim.languages.helm;
|
||||||
yamlCfg = config.vim.languages.yaml;
|
yamlCfg = config.vim.languages.yaml;
|
||||||
|
|
||||||
helmCmd =
|
defaultServers = ["helm-ls"];
|
||||||
if isList cfg.lsp.package
|
|
||||||
then cfg.lsp.package
|
|
||||||
else ["${cfg.lsp.package}/bin/helm_ls" "serve"];
|
|
||||||
yamlCmd =
|
|
||||||
if isList yamlCfg.lsp.package
|
|
||||||
then builtins.elemAt yamlCfg.lsp.package 0
|
|
||||||
else "${yamlCfg.lsp.package}/bin/yaml-language-server";
|
|
||||||
|
|
||||||
defaultServer = "helm-ls";
|
|
||||||
servers = {
|
servers = {
|
||||||
helm-ls = {
|
helm-ls = {
|
||||||
package = pkgs.helm-ls;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.helm-ls) "serve"];
|
||||||
lspconfig.helm_ls.setup {
|
filetypes = ["helm" "yaml.helm-values"];
|
||||||
capabilities = capabilities,
|
root_markers = ["Chart.yaml"];
|
||||||
on_attach = default_on_attach,
|
capabilities = {
|
||||||
cmd = ${expToLua helmCmd},
|
didChangeWatchedFiles = {
|
||||||
settings = {
|
dynamicRegistration = true;
|
||||||
['helm-ls'] = {
|
};
|
||||||
yamlls = {
|
};
|
||||||
path = "${yamlCmd}"
|
settings = mkIf (yamlCfg.enable && yamlCfg.lsp.enable) {
|
||||||
}
|
helm-ls = {
|
||||||
}
|
yamlls = {
|
||||||
}
|
# Without this being enabled, the YAML language module will look broken in helmfiles
|
||||||
}
|
# if both modules are enabled at once.
|
||||||
'';
|
enabled = mkDefault yamlCfg.lsp.enable;
|
||||||
|
path = head config.vim.lsp.servers.${head yamlCfg.lsp.servers}.cmd;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -55,17 +50,10 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Helm LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Helm LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
server = mkOption {
|
type = deprecatedSingleOrListOf "vim.language.helm.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "Helm LSP server to use";
|
description = "Helm LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Helm LSP server package";
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -77,8 +65,12 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.helm-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,14 +4,46 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
inherit (builtins) attrNames;
|
||||||
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.types) bool;
|
inherit (lib.types) bool enum;
|
||||||
inherit (lib.lists) optional;
|
inherit (lib.lists) optional;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption diagnostics deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.dag) entryAnywhere;
|
inherit (lib.nvim.dag) entryAnywhere;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.html;
|
cfg = config.vim.languages.html;
|
||||||
|
|
||||||
|
defaultServers = ["superhtml"];
|
||||||
|
servers = {
|
||||||
|
superhtml = {
|
||||||
|
cmd = [(getExe pkgs.superhtml) "lsp"];
|
||||||
|
filetypes = ["html" "shtml" "htm"];
|
||||||
|
root_markers = ["index.html" ".git"];
|
||||||
|
};
|
||||||
|
emmet-ls = {
|
||||||
|
cmd = [(getExe pkgs.emmet-ls) "--stdio"];
|
||||||
|
filetypes = ["html" "shtml" "htm"];
|
||||||
|
root_markers = ["index.html" ".git"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
defaultFormat = ["superhtml"];
|
||||||
|
formats = {
|
||||||
|
superhtml = {
|
||||||
|
command = "${pkgs.superhtml}/bin/superhtml";
|
||||||
|
args = ["fmt" "-"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
defaultDiagnosticsProvider = ["htmlhint"];
|
||||||
|
diagnosticsProviders = {
|
||||||
|
htmlhint = {
|
||||||
|
config.cmd = getExe pkgs.htmlhint;
|
||||||
|
};
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options.vim.languages.html = {
|
options.vim.languages.html = {
|
||||||
enable = mkEnableOption "HTML language support";
|
enable = mkEnableOption "HTML language support";
|
||||||
|
|
@ -19,9 +51,38 @@ in {
|
||||||
enable = mkEnableOption "HTML treesitter support" // {default = config.vim.languages.enableTreesitter;};
|
enable = mkEnableOption "HTML treesitter support" // {default = config.vim.languages.enableTreesitter;};
|
||||||
package = mkGrammarOption pkgs "html";
|
package = mkGrammarOption pkgs "html";
|
||||||
autotagHtml = mkOption {
|
autotagHtml = mkOption {
|
||||||
description = "Enable autoclose/autorename of html tags (nvim-ts-autotag)";
|
|
||||||
type = bool;
|
type = bool;
|
||||||
default = true;
|
default = true;
|
||||||
|
description = "Enable autoclose/autorename of html tags (nvim-ts-autotag)";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
lsp = {
|
||||||
|
enable = mkEnableOption "HTML LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.html.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
|
description = "HTML LSP server to use";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
format = {
|
||||||
|
enable = mkEnableOption "HTML formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
|
type = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.html.format.type" (enum (attrNames formats));
|
||||||
|
default = defaultFormat;
|
||||||
|
description = "HTML formatter to use";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
extraDiagnostics = {
|
||||||
|
enable = mkEnableOption "extra HTML diagnostics" // {default = config.vim.languages.enableExtraDiagnostics;};
|
||||||
|
|
||||||
|
types = diagnostics {
|
||||||
|
langDesc = "HTML";
|
||||||
|
inherit diagnosticsProviders;
|
||||||
|
inherit defaultDiagnosticsProvider;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -41,5 +102,40 @@ in {
|
||||||
'');
|
'');
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.lsp.enable {
|
||||||
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf (cfg.format.enable && !cfg.lsp.enable) {
|
||||||
|
vim.formatter.conform-nvim = {
|
||||||
|
enable = true;
|
||||||
|
setupOpts = {
|
||||||
|
formatters_by_ft.html = cfg.format.type;
|
||||||
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.extraDiagnostics.enable {
|
||||||
|
vim.diagnostics.nvim-lint = {
|
||||||
|
enable = true;
|
||||||
|
linters_by_ft.html = cfg.extraDiagnostics.types;
|
||||||
|
linters = mkMerge (map (name: {
|
||||||
|
${name} = diagnosticsProviders.${name}.config;
|
||||||
|
})
|
||||||
|
cfg.extraDiagnostics.types);
|
||||||
|
};
|
||||||
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,59 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.lists) isList;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.types) either listOf package str;
|
inherit (lib.types) listOf enum;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
inherit (lib.nvim.dag) entryBefore;
|
||||||
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
|
||||||
cfg = config.vim.languages.java;
|
cfg = config.vim.languages.java;
|
||||||
|
|
||||||
|
defaultServers = ["jdtls"];
|
||||||
|
servers = {
|
||||||
|
jdtls = {
|
||||||
|
enable = true;
|
||||||
|
cmd =
|
||||||
|
mkLuaInline
|
||||||
|
/*
|
||||||
|
lua
|
||||||
|
*/
|
||||||
|
''
|
||||||
|
{
|
||||||
|
'${getExe pkgs.jdt-language-server}',
|
||||||
|
'-configuration',
|
||||||
|
get_jdtls_config_dir(),
|
||||||
|
'-data',
|
||||||
|
get_jdtls_workspace_dir(),
|
||||||
|
get_jdtls_jvm_args(),
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
filetypes = ["java"];
|
||||||
|
root_markers = [
|
||||||
|
# Multi-module projects
|
||||||
|
".git"
|
||||||
|
"build.gradle"
|
||||||
|
"build.gradle.kts"
|
||||||
|
# Single-module projects
|
||||||
|
"build.xml" # Ant
|
||||||
|
"pom.xml" # Maven
|
||||||
|
"settings.gradle" # Gradle
|
||||||
|
"settings.gradle.kts" # Gradle
|
||||||
|
];
|
||||||
|
init_options = {
|
||||||
|
workspace = mkLuaInline "get_jdtls_workspace_dir()";
|
||||||
|
jvm_args = {};
|
||||||
|
os_config = mkLuaInline "nil";
|
||||||
|
};
|
||||||
|
handlers = {
|
||||||
|
"textDocument/codeAction" = mkLuaInline "jdtls_on_textdocument_codeaction";
|
||||||
|
"textDocument/rename" = mkLuaInline "jdtls_on_textdocument_rename";
|
||||||
|
"workspace/applyEdit" = mkLuaInline "jdtls_on_workspace_applyedit";
|
||||||
|
"language/status" = mkLuaInline "vim.schedule_wrap(jdtls_on_language_status)";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options.vim.languages.java = {
|
options.vim.languages.java = {
|
||||||
enable = mkEnableOption "Java language support";
|
enable = mkEnableOption "Java language support";
|
||||||
|
|
@ -23,30 +70,107 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Java LSP support (java-language-server)" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Java LSP support" // {default = config.vim.lsp.enable;};
|
||||||
package = mkOption {
|
servers = mkOption {
|
||||||
description = "java language server package, or the command to run as a list of strings";
|
type = listOf (enum (attrNames servers));
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server "-data" "~/.cache/jdtls/workspace"]'';
|
default = defaultServers;
|
||||||
type = either package (listOf str);
|
description = "Java LSP server to use";
|
||||||
default = pkgs.jdt-language-server;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.luaConfigRC.jdtls-util =
|
||||||
vim.lsp.lspconfig.sources.jdtls = ''
|
entryBefore ["lsp-servers"]
|
||||||
lspconfig.jdtls.setup {
|
/*
|
||||||
capabilities = capabilities,
|
lua
|
||||||
on_attach = default_on_attach,
|
*/
|
||||||
cmd = ${
|
''
|
||||||
if isList cfg.lsp.package
|
local jdtls_handlers = require 'vim.lsp.handlers'
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${getExe cfg.lsp.package}", "-data", vim.fn.stdpath("cache").."/jdtls/workspace"}''
|
local jdtls_env = {
|
||||||
},
|
HOME = vim.uv.os_homedir(),
|
||||||
}
|
XDG_CACHE_HOME = os.getenv 'XDG_CACHE_HOME',
|
||||||
'';
|
JDTLS_JVM_ARGS = os.getenv 'JDTLS_JVM_ARGS',
|
||||||
|
}
|
||||||
|
|
||||||
|
local function get_cache_dir()
|
||||||
|
return jdtls_env.XDG_CACHE_HOME and jdtls_env.XDG_CACHE_HOME or jdtls_env.HOME .. '/.cache'
|
||||||
|
end
|
||||||
|
|
||||||
|
local function get_jdtls_cache_dir()
|
||||||
|
return get_cache_dir() .. '/jdtls'
|
||||||
|
end
|
||||||
|
|
||||||
|
local function get_jdtls_config_dir()
|
||||||
|
return get_jdtls_cache_dir() .. '/config'
|
||||||
|
end
|
||||||
|
|
||||||
|
local function get_jdtls_workspace_dir()
|
||||||
|
return get_jdtls_cache_dir() .. '/workspace'
|
||||||
|
end
|
||||||
|
|
||||||
|
local function get_jdtls_jvm_args()
|
||||||
|
local args = {}
|
||||||
|
for a in string.gmatch((jdtls_env.JDTLS_JVM_ARGS or '''), '%S+') do
|
||||||
|
local arg = string.format('--jvm-arg=%s', a)
|
||||||
|
table.insert(args, arg)
|
||||||
|
end
|
||||||
|
return unpack(args)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- TextDocument version is reported as 0, override with nil so that
|
||||||
|
-- the client doesn't think the document is newer and refuses to update
|
||||||
|
-- See: https://github.com/eclipse/eclipse.jdt.ls/issues/1695
|
||||||
|
local function jdtls_fix_zero_version(workspace_edit)
|
||||||
|
if workspace_edit and workspace_edit.documentChanges then
|
||||||
|
for _, change in pairs(workspace_edit.documentChanges) do
|
||||||
|
local text_document = change.textDocument
|
||||||
|
if text_document and text_document.version and text_document.version == 0 then
|
||||||
|
text_document.version = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return workspace_edit
|
||||||
|
end
|
||||||
|
|
||||||
|
local function jdtls_on_textdocument_codeaction(err, actions, ctx)
|
||||||
|
for _, action in ipairs(actions) do
|
||||||
|
-- TODO: (steelsojka) Handle more than one edit?
|
||||||
|
if action.command == 'java.apply.workspaceEdit' then -- 'action' is Command in java format
|
||||||
|
action.edit = jdtls_fix_zero_version(action.edit or action.arguments[1])
|
||||||
|
elseif type(action.command) == 'table' and action.command.command == 'java.apply.workspaceEdit' then -- 'action' is CodeAction in java format
|
||||||
|
action.edit = jdtls_fix_zero_version(action.edit or action.command.arguments[1])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
jdtls_handlers[ctx.method](err, actions, ctx)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function jdtls_on_textdocument_rename(err, workspace_edit, ctx)
|
||||||
|
jdtls_handlers[ctx.method](err, jdtls_fix_zero_version(workspace_edit), ctx)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function jdtls_on_workspace_applyedit(err, workspace_edit, ctx)
|
||||||
|
jdtls_handlers[ctx.method](err, jdtls_fix_zero_version(workspace_edit), ctx)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Non-standard notification that can be used to display progress
|
||||||
|
local function jdtls_on_language_status(_, result)
|
||||||
|
local command = vim.api.nvim_command
|
||||||
|
command 'echohl ModeMsg'
|
||||||
|
command(string.format('echo "%s"', result.message))
|
||||||
|
command 'echohl None'
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
|
||||||
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.treesitter.enable {
|
(mkIf cfg.treesitter.enable {
|
||||||
|
|
|
||||||
96
modules/plugins/languages/json.nix
Normal file
96
modules/plugins/languages/json.nix
Normal file
|
|
@ -0,0 +1,96 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (builtins) attrNames;
|
||||||
|
inherit (lib.options) mkOption mkEnableOption;
|
||||||
|
inherit (lib.meta) getExe' getExe;
|
||||||
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
|
inherit (lib.types) enum;
|
||||||
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
|
cfg = config.vim.languages.json;
|
||||||
|
|
||||||
|
defaultServers = ["jsonls"];
|
||||||
|
servers = {
|
||||||
|
jsonls = {
|
||||||
|
cmd = [(getExe' pkgs.vscode-langservers-extracted "vscode-json-language-server") "--stdio"];
|
||||||
|
filetypes = ["json" "jsonc"];
|
||||||
|
init_options = {provideFormatter = true;};
|
||||||
|
root_markers = [".git"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
defaultFormat = ["jsonfmt"];
|
||||||
|
|
||||||
|
formats = {
|
||||||
|
jsonfmt = {
|
||||||
|
command = getExe pkgs.jsonfmt;
|
||||||
|
args = ["-w" "-"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
options.vim.languages.json = {
|
||||||
|
enable = mkEnableOption "JSON language support";
|
||||||
|
|
||||||
|
treesitter = {
|
||||||
|
enable = mkEnableOption "JSON treesitter" // {default = config.vim.languages.enableTreesitter;};
|
||||||
|
|
||||||
|
package = mkGrammarOption pkgs "json";
|
||||||
|
};
|
||||||
|
|
||||||
|
lsp = {
|
||||||
|
enable = mkEnableOption "JSON LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.json.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
|
description = "JSON LSP server to use";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
format = {
|
||||||
|
enable = mkEnableOption "JSON formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
|
type = mkOption {
|
||||||
|
description = "JSON formatter to use";
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.json.format.type" (enum (attrNames formats));
|
||||||
|
default = defaultFormat;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable (mkMerge [
|
||||||
|
(mkIf cfg.treesitter.enable {
|
||||||
|
vim.treesitter.enable = true;
|
||||||
|
vim.treesitter.grammars = [cfg.treesitter.package];
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.lsp.enable {
|
||||||
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = servers.${name};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.format.enable {
|
||||||
|
vim.formatter.conform-nvim = {
|
||||||
|
enable = true;
|
||||||
|
setupOpts = {
|
||||||
|
formatters_by_ft.json = cfg.format.type;
|
||||||
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
@ -4,63 +4,82 @@
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames isList;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.types) either listOf package str enum bool nullOr;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.strings) optionalString;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
inherit (lib.nvim.dag) entryBefore;
|
||||||
|
|
||||||
defaultServer = "julials";
|
defaultServers = ["julials"];
|
||||||
servers = {
|
servers = {
|
||||||
julials = {
|
julials = {
|
||||||
package = pkgs.julia.withPackages ["LanguageServer"];
|
enable = true;
|
||||||
internalFormatter = true;
|
cmd =
|
||||||
lspConfig = ''
|
mkLuaInline
|
||||||
lspconfig.julials.setup {
|
/*
|
||||||
capabilities = capabilities,
|
lua
|
||||||
on_attach = default_on_attach,
|
*/
|
||||||
cmd = ${
|
''
|
||||||
if isList cfg.lsp.package
|
{
|
||||||
then expToLua cfg.lsp.package
|
'${getExe (pkgs.julia.withPackages ["LanguageServer"])}',
|
||||||
else ''
|
'--startup-file=no',
|
||||||
{
|
'--history-file=no',
|
||||||
"${optionalString (cfg.lsp.package != null) "${cfg.lsp.package}/bin/"}julia",
|
'-e',
|
||||||
"--startup-file=no",
|
[[
|
||||||
"--history-file=no",
|
# Load LanguageServer.jl: attempt to load from ~/.julia/environments/nvim-lspconfig
|
||||||
"--eval",
|
# with the regular load path as a fallback
|
||||||
[[
|
ls_install_path = joinpath(
|
||||||
using LanguageServer
|
get(DEPOT_PATH, 1, joinpath(homedir(), ".julia")),
|
||||||
|
"environments", "nvim-lspconfig"
|
||||||
depot_path = get(ENV, "JULIA_DEPOT_PATH", "")
|
)
|
||||||
project_path = let
|
pushfirst!(LOAD_PATH, ls_install_path)
|
||||||
dirname(something(
|
using LanguageServer
|
||||||
## 1. Finds an explicitly set project (JULIA_PROJECT)
|
popfirst!(LOAD_PATH)
|
||||||
Base.load_path_expand((
|
depot_path = get(ENV, "JULIA_DEPOT_PATH", "")
|
||||||
p = get(ENV, "JULIA_PROJECT", nothing);
|
project_path = let
|
||||||
p === nothing ? nothing : isempty(p) ? nothing : p
|
dirname(something(
|
||||||
)),
|
## 1. Finds an explicitly set project (JULIA_PROJECT)
|
||||||
## 2. Look for a Project.toml file in the current working directory,
|
Base.load_path_expand((
|
||||||
## or parent directories, with $HOME as an upper boundary
|
p = get(ENV, "JULIA_PROJECT", nothing);
|
||||||
Base.current_project(),
|
p === nothing ? nothing : isempty(p) ? nothing : p
|
||||||
## 3. First entry in the load path
|
)),
|
||||||
get(Base.load_path(), 1, nothing),
|
## 2. Look for a Project.toml file in the current working directory,
|
||||||
## 4. Fallback to default global environment,
|
## or parent directories, with $HOME as an upper boundary
|
||||||
## this is more or less unreachable
|
Base.current_project(),
|
||||||
Base.load_path_expand("@v#.#"),
|
## 3. First entry in the load path
|
||||||
))
|
get(Base.load_path(), 1, nothing),
|
||||||
end
|
## 4. Fallback to default global environment,
|
||||||
@info "Running language server" VERSION pwd() project_path depot_path
|
## this is more or less unreachable
|
||||||
server = LanguageServer.LanguageServerInstance(stdin, stdout, project_path, depot_path)
|
Base.load_path_expand("@v#.#"),
|
||||||
server.runlinter = true
|
))
|
||||||
run(server)
|
end
|
||||||
]]
|
@info "Running language server" VERSION pwd() project_path depot_path
|
||||||
}
|
server = LanguageServer.LanguageServerInstance(stdin, stdout, project_path, depot_path)
|
||||||
''
|
server.runlinter = true
|
||||||
}
|
run(server)
|
||||||
}
|
]],
|
||||||
'';
|
}
|
||||||
|
'';
|
||||||
|
filetypes = ["julia"];
|
||||||
|
root_markers = ["Project.toml" "JuliaProject.toml"];
|
||||||
|
on_attach =
|
||||||
|
mkLuaInline
|
||||||
|
/*
|
||||||
|
lua
|
||||||
|
*/
|
||||||
|
''
|
||||||
|
function(_, bufnr)
|
||||||
|
vim.api.nvim_buf_create_user_command(bufnr, 'LspJuliaActivateEnv', activate_julia_env, {
|
||||||
|
desc = 'Activate a Julia environment',
|
||||||
|
nargs = '?',
|
||||||
|
complete = 'file',
|
||||||
|
})
|
||||||
|
end
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -76,38 +95,26 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkOption {
|
enable = mkEnableOption "Julia LSP support" // {default = config.vim.lsp.enable;};
|
||||||
type = bool;
|
servers = mkOption {
|
||||||
default = config.vim.lsp.enable;
|
type = deprecatedSingleOrListOf "vim.language.julia.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = ''
|
description = ''
|
||||||
Whether to enable Julia LSP support.
|
Julia LSP Server to Use
|
||||||
|
|
||||||
::: {.note}
|
::: {.note}
|
||||||
The entirety of Julia is bundled with nvf, if you enable this
|
The entirety of Julia is bundled with nvf, if you enable this
|
||||||
option, since there is no way to provide only the LSP server.
|
option, since there is no way to provide only the LSP server.
|
||||||
|
|
||||||
If you want to avoid that, you have to change
|
If you want to avoid that, you have to change
|
||||||
[](#opt-vim.languages.julia.lsp.package) to use the Julia binary
|
{option}`vim.lsp.servers.julials.cmd` to use
|
||||||
in {env}`PATH` (set it to `null`), and add the `LanguageServer` package to
|
the Julia binary in {env}`PATH`, and add the `LanguageServer`
|
||||||
Julia in your devshells.
|
package to Julia in your devshells.
|
||||||
|
|
||||||
|
Check the source file of this option for the full `cmd`.
|
||||||
:::
|
:::
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
server = mkOption {
|
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
description = "Julia LSP server to use";
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = ''
|
|
||||||
Julia LSP server package, `null` to use the Julia binary in {env}`PATH`, or
|
|
||||||
the command to run as a list of strings.
|
|
||||||
'';
|
|
||||||
type = nullOr (either package (listOf str));
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -119,8 +126,70 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.luaConfigRC.julia-util =
|
||||||
vim.lsp.lspconfig.sources.julia-lsp = servers.${cfg.lsp.server}.lspConfig;
|
entryBefore ["lsp-servers"]
|
||||||
|
/*
|
||||||
|
lua
|
||||||
|
*/
|
||||||
|
''
|
||||||
|
local function activate_julia_env(path)
|
||||||
|
assert(vim.fn.has 'nvim-0.10' == 1, 'requires Nvim 0.10 or newer')
|
||||||
|
local bufnr = vim.api.nvim_get_current_buf()
|
||||||
|
local julials_clients = vim.lsp.get_clients { bufnr = bufnr, name = 'julials' }
|
||||||
|
assert(
|
||||||
|
#julials_clients > 0,
|
||||||
|
'method julia/activateenvironment is not supported by any servers active on the current buffer'
|
||||||
|
)
|
||||||
|
local function _activate_env(environment)
|
||||||
|
if environment then
|
||||||
|
for _, julials_client in ipairs(julials_clients) do
|
||||||
|
julials_client:notify('julia/activateenvironment', { envPath = environment })
|
||||||
|
end
|
||||||
|
vim.notify('Julia environment activated: \n`' .. environment .. '`', vim.log.levels.INFO)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if path then
|
||||||
|
path = vim.fs.normalize(vim.fn.fnamemodify(vim.fn.expand(path), ':p'))
|
||||||
|
local found_env = false
|
||||||
|
for _, project_file in ipairs(root_files) do
|
||||||
|
local file = vim.uv.fs_stat(vim.fs.joinpath(path, project_file))
|
||||||
|
if file and file.type then
|
||||||
|
found_env = true
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if not found_env then
|
||||||
|
vim.notify('Path is not a julia environment: \n`' .. path .. '`', vim.log.levels.WARN)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
_activate_env(path)
|
||||||
|
else
|
||||||
|
local depot_paths = vim.env.JULIA_DEPOT_PATH
|
||||||
|
and vim.split(vim.env.JULIA_DEPOT_PATH, vim.fn.has 'win32' == 1 and ';' or ':')
|
||||||
|
or { vim.fn.expand '~/.julia' }
|
||||||
|
local environments = {}
|
||||||
|
vim.list_extend(environments, vim.fs.find(root_files, { type = 'file', upward = true, limit = math.huge }))
|
||||||
|
for _, depot_path in ipairs(depot_paths) do
|
||||||
|
local depot_env = vim.fs.joinpath(vim.fs.normalize(depot_path), 'environments')
|
||||||
|
vim.list_extend(
|
||||||
|
environments,
|
||||||
|
vim.fs.find(function(name, env_path)
|
||||||
|
return vim.tbl_contains(root_files, name) and string.sub(env_path, #depot_env + 1):match '^/[^/]*$'
|
||||||
|
end, { path = depot_env, type = 'file', limit = math.huge })
|
||||||
|
)
|
||||||
|
end
|
||||||
|
environments = vim.tbl_map(vim.fs.dirname, environments)
|
||||||
|
vim.ui.select(environments, { prompt = 'Select a Julia environment' }, _activate_env)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
|
||||||
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
64
modules/plugins/languages/just.nix
Normal file
64
modules/plugins/languages/just.nix
Normal file
|
|
@ -0,0 +1,64 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (builtins) attrNames;
|
||||||
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
|
inherit (lib.meta) getExe;
|
||||||
|
inherit (lib.types) enum listOf;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
inherit (lib.nvim.types) mkGrammarOption;
|
||||||
|
|
||||||
|
cfg = config.vim.languages.just;
|
||||||
|
|
||||||
|
defaultServers = ["just-lsp"];
|
||||||
|
servers = {
|
||||||
|
just-lsp = {
|
||||||
|
enable = true;
|
||||||
|
cmd = [(getExe pkgs.just-lsp)];
|
||||||
|
filetypes = ["just"];
|
||||||
|
root_markers = [".git" "justfile"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
options.vim.languages.just = {
|
||||||
|
enable = mkEnableOption "Just support";
|
||||||
|
|
||||||
|
treesitter = {
|
||||||
|
enable =
|
||||||
|
mkEnableOption "Just treesitter" // {default = config.vim.languages.enableTreesitter;};
|
||||||
|
package = mkGrammarOption pkgs "just";
|
||||||
|
};
|
||||||
|
|
||||||
|
lsp = {
|
||||||
|
enable =
|
||||||
|
mkEnableOption "Just LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
|
type = listOf (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
|
description = "Just LSP server to use";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable (mkMerge [
|
||||||
|
(mkIf cfg.treesitter.enable {
|
||||||
|
vim.treesitter = {
|
||||||
|
enable = true;
|
||||||
|
grammars = [cfg.treesitter.package];
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.lsp.enable {
|
||||||
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
@ -4,16 +4,47 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.options) mkEnableOption mkOption literalExpression;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe' getExe;
|
||||||
inherit (lib.types) either package listOf str;
|
inherit (builtins) attrNames;
|
||||||
|
inherit (lib.types) enum listOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption diagnostics;
|
inherit (lib.nvim.types) mkGrammarOption diagnostics;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.kotlin;
|
cfg = config.vim.languages.kotlin;
|
||||||
|
|
||||||
|
defaultServers = ["kotlin-language-server"];
|
||||||
|
servers = {
|
||||||
|
kotlin-language-server = {
|
||||||
|
enable = true;
|
||||||
|
cmd = [(getExe' pkgs.kotlin-language-server "kotlin-language-server")];
|
||||||
|
filetypes = ["kotlin"];
|
||||||
|
root_markers = [
|
||||||
|
"settings.gradle" # Gradle (multi-project)
|
||||||
|
"settings.gradle.kts" # Gradle (multi-project)
|
||||||
|
"build.xml" # Ant
|
||||||
|
"pom.xml" # Maven
|
||||||
|
"build.gradle" # Gradle
|
||||||
|
"build.gradle.kts" # gradle
|
||||||
|
];
|
||||||
|
init_options = {
|
||||||
|
storagePath = mkLuaInline "
|
||||||
|
vim.fs.root(vim.fn.expand '%:p:h',
|
||||||
|
{
|
||||||
|
'settings.gradle', -- Gradle (multi-project)
|
||||||
|
'settings.gradle.kts', -- Gradle (multi-project)
|
||||||
|
'build.xml', -- Ant
|
||||||
|
'pom.xml', -- Maven
|
||||||
|
'build.gradle', -- Gradle
|
||||||
|
'build.gradle.kts', -- Gradle
|
||||||
|
}
|
||||||
|
)";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
defaultDiagnosticsProvider = ["ktlint"];
|
defaultDiagnosticsProvider = ["ktlint"];
|
||||||
diagnosticsProviders = {
|
diagnosticsProviders = {
|
||||||
ktlint = {
|
ktlint = {
|
||||||
|
|
@ -31,22 +62,10 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Kotlin LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Kotlin LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
package = mkOption {
|
type = listOf (enum (attrNames servers));
|
||||||
description = "kotlin_language_server package with Kotlin runtime";
|
default = defaultServers;
|
||||||
type = either package (listOf str);
|
description = "Kotlin LSP server to use";
|
||||||
example = literalExpression ''
|
|
||||||
pkgs.symlinkJoin {
|
|
||||||
name = "kotlin-language-server-wrapped";
|
|
||||||
paths = [pkgs.kotlin-language-server];
|
|
||||||
nativeBuildInputs = [pkgs.makeBinaryWrapper];
|
|
||||||
postBuild = '''
|
|
||||||
wrapProgram $out/bin/kotlin-language-server \
|
|
||||||
--prefix PATH : ''${pkgs.kotlin}/bin
|
|
||||||
''';
|
|
||||||
};
|
|
||||||
'';
|
|
||||||
default = pkgs.kotlin-language-server;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -78,23 +97,12 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.kotlin_language_server = ''
|
mapListToAttrs (n: {
|
||||||
lspconfig.kotlin_language_server.setup {
|
name = n;
|
||||||
capabilities = capabilities,
|
value = servers.${n};
|
||||||
root_dir = lspconfig.util.root_pattern("main.kt", ".git"),
|
})
|
||||||
on_attach=default_on_attach,
|
cfg.lsp.servers;
|
||||||
init_options = {
|
|
||||||
-- speeds up the startup time for the LSP
|
|
||||||
storagePath = vim.fn.stdpath('state') .. '/kotlin',
|
|
||||||
},
|
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${cfg.lsp.package}/bin/kotlin-language-server"}''
|
|
||||||
},
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,17 +8,36 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) bool enum listOf;
|
||||||
inherit (lib.types) bool either enum listOf package str;
|
inherit (lib.nvim.types) diagnostics mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) diagnostics mkGrammarOption;
|
|
||||||
inherit (lib.nvim.lua) expToLua;
|
|
||||||
inherit (lib.nvim.dag) entryBefore;
|
inherit (lib.nvim.dag) entryBefore;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.lua;
|
cfg = config.vim.languages.lua;
|
||||||
defaultFormat = "stylua";
|
|
||||||
|
defaultServers = ["lua-language-server"];
|
||||||
|
servers = {
|
||||||
|
lua-language-server = {
|
||||||
|
enable = true;
|
||||||
|
cmd = [(getExe pkgs.lua-language-server)];
|
||||||
|
filetypes = ["lua"];
|
||||||
|
root_markers = [
|
||||||
|
".luarc.json"
|
||||||
|
".luarc.jsonc"
|
||||||
|
".luacheckrc"
|
||||||
|
".stylua.toml"
|
||||||
|
"stylua.toml"
|
||||||
|
"selene.toml"
|
||||||
|
"selene.yml"
|
||||||
|
".git"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
defaultFormat = ["stylua"];
|
||||||
formats = {
|
formats = {
|
||||||
stylua = {
|
stylua = {
|
||||||
package = pkgs.stylua;
|
command = getExe pkgs.stylua;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -43,12 +62,11 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Lua LSP support via LuaLS" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Lua LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
package = mkOption {
|
type = listOf (enum (attrNames servers));
|
||||||
description = "LuaLS package, or the command to run as a list of strings";
|
default = defaultServers;
|
||||||
type = either package (listOf str);
|
description = "Lua LSP server to use";
|
||||||
default = pkgs.lua-language-server;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
lazydev.enable = mkEnableOption "lazydev.nvim integration, useful for neovim plugin developers";
|
lazydev.enable = mkEnableOption "lazydev.nvim integration, useful for neovim plugin developers";
|
||||||
|
|
@ -61,16 +79,10 @@ in {
|
||||||
description = "Enable Lua formatting";
|
description = "Enable Lua formatting";
|
||||||
};
|
};
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.lua.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
description = "Lua formatter to use";
|
description = "Lua formatter to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
description = "Lua formatter package";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extraDiagnostics = {
|
extraDiagnostics = {
|
||||||
|
|
@ -91,23 +103,17 @@ in {
|
||||||
|
|
||||||
(mkIf cfg.enable (mkMerge [
|
(mkIf cfg.enable (mkMerge [
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.lua-lsp = ''
|
mapListToAttrs (n: {
|
||||||
lspconfig.lua_ls.setup {
|
name = n;
|
||||||
capabilities = capabilities;
|
value = servers.${n};
|
||||||
on_attach = default_on_attach;
|
})
|
||||||
cmd = ${
|
cfg.lsp.servers;
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${getExe cfg.lsp.package}"}''
|
|
||||||
};
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.lazydev.enable {
|
(mkIf cfg.lsp.lazydev.enable {
|
||||||
vim.startPlugins = ["lazydev-nvim"];
|
vim.startPlugins = ["lazydev-nvim"];
|
||||||
vim.pluginRC.lazydev = entryBefore ["lua-lsp"] ''
|
vim.pluginRC.lazydev = entryBefore ["lsp-servers"] ''
|
||||||
require("lazydev").setup({
|
require("lazydev").setup({
|
||||||
enabled = function(root_dir)
|
enabled = function(root_dir)
|
||||||
return not vim.uv.fs_stat(root_dir .. "/.luarc.json")
|
return not vim.uv.fs_stat(root_dir .. "/.luarc.json")
|
||||||
|
|
@ -120,9 +126,14 @@ in {
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.lua = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.lua = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -8,42 +8,42 @@
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) bool enum listOf str nullOr;
|
||||||
inherit (lib.types) bool enum either package listOf str nullOr;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
inherit (lib.nvim.lua) expToLua toLuaObject;
|
inherit (lib.nvim.types) diagnostics mkGrammarOption mkPluginSetupOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) diagnostics mkGrammarOption mkPluginSetupOption;
|
|
||||||
inherit (lib.nvim.dag) entryAnywhere;
|
inherit (lib.nvim.dag) entryAnywhere;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
inherit (lib.trivial) warn;
|
||||||
|
|
||||||
cfg = config.vim.languages.markdown;
|
cfg = config.vim.languages.markdown;
|
||||||
defaultServer = "marksman";
|
defaultServers = ["marksman"];
|
||||||
servers = {
|
servers = {
|
||||||
marksman = {
|
marksman = {
|
||||||
package = pkgs.marksman;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.marksman) "server"];
|
||||||
lspconfig.marksman.setup{
|
filetypes = ["markdown" "markdown.mdx"];
|
||||||
capabilities = capabilities;
|
root_markers = [".marksman.toml" ".git"];
|
||||||
on_attach = default_on_attach;
|
};
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
markdown-oxide = {
|
||||||
then expToLua cfg.lsp.package
|
enable = true;
|
||||||
else ''{"${cfg.lsp.package}/bin/marksman", "server"}''
|
cmd = [(getExe pkgs.markdown-oxide)];
|
||||||
},
|
filetypes = ["markdown"];
|
||||||
}
|
root_markers = [".git" ".obsidian" ".moxide.toml"];
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "deno_fmt";
|
defaultFormat = ["deno_fmt"];
|
||||||
formats = {
|
formats = {
|
||||||
# for backwards compatibility
|
# for backwards compatibility
|
||||||
denofmt = {
|
denofmt = {
|
||||||
package = pkgs.deno;
|
command = getExe pkgs.deno;
|
||||||
};
|
};
|
||||||
deno_fmt = {
|
deno_fmt = {
|
||||||
package = pkgs.deno;
|
command = getExe pkgs.deno;
|
||||||
};
|
};
|
||||||
prettierd = {
|
prettierd = {
|
||||||
package = pkgs.prettierd;
|
command = getExe pkgs.prettierd;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
defaultDiagnosticsProvider = ["markdownlint-cli2"];
|
defaultDiagnosticsProvider = ["markdownlint-cli2"];
|
||||||
|
|
@ -67,19 +67,12 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Enable Markdown LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Markdown LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
description = "Markdown LSP server to use";
|
description = "Markdown LSP server to use";
|
||||||
};
|
type = deprecatedSingleOrListOf "vim.language.markdown.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
package = mkOption {
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server " - data " " ~/.cache/jdtls/workspace "]'';
|
|
||||||
description = "Markdown LSP server package, or the command to run as a list of strings";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -87,17 +80,11 @@ in {
|
||||||
enable = mkEnableOption "Markdown formatting" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "Markdown formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.markdown.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
description = "Markdown formatter to use. `denofmt` is deprecated and currently aliased to deno_fmt.";
|
description = "Markdown formatter to use. `denofmt` is deprecated and currently aliased to deno_fmt.";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
description = "Markdown formatter package";
|
|
||||||
};
|
|
||||||
|
|
||||||
extraFiletypes = mkOption {
|
extraFiletypes = mkOption {
|
||||||
type = listOf str;
|
type = listOf str;
|
||||||
default = [];
|
default = [];
|
||||||
|
|
@ -161,20 +148,34 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.markdown-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.markdown = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${
|
formatters_by_ft.markdown = cfg.format.type;
|
||||||
if cfg.format.type == "denofmt"
|
formatters = let
|
||||||
then "deno_fmt"
|
names = map (name:
|
||||||
else cfg.format.type
|
if name == "denofmt"
|
||||||
} = {
|
then
|
||||||
command = getExe cfg.format.package;
|
warn ''
|
||||||
|
vim.languages.markdown.format.type: "denofmt" is renamed to "deno_fmt".
|
||||||
|
'' "deno_fmt"
|
||||||
|
else name)
|
||||||
|
cfg.format.type;
|
||||||
|
in
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
names;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -6,41 +6,41 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
|
inherit (lib.meta) getExe';
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.nim;
|
cfg = config.vim.languages.nim;
|
||||||
|
|
||||||
defaultServer = "nimlsp";
|
defaultServers = ["nimlsp"];
|
||||||
servers = {
|
servers = {
|
||||||
nimlsp = {
|
nimlsp = {
|
||||||
package = pkgs.nimlsp;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe' pkgs.nimlsp "nimlsp")];
|
||||||
lspconfig.nimls.setup{
|
filetypes = ["nim"];
|
||||||
capabilities = capabilities;
|
root_dir =
|
||||||
on_attach = default_on_attach;
|
mkLuaInline
|
||||||
cmd = ${
|
/*
|
||||||
if isList cfg.lsp.package
|
lua
|
||||||
then expToLua cfg.lsp.package
|
*/
|
||||||
else ''
|
''
|
||||||
{"${cfg.lsp.package}/bin/nimlsp"}
|
function(bufnr, on_dir)
|
||||||
''
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
};
|
on_dir(
|
||||||
}
|
util.root_pattern '*.nimble'(fname) or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])
|
||||||
'';
|
)
|
||||||
|
end
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "nimpretty";
|
defaultFormat = ["nimpretty"];
|
||||||
formats = {
|
formats = {
|
||||||
nimpretty = {
|
nimpretty = {
|
||||||
package = pkgs.nim;
|
command = "${pkgs.nim}/bin/nimpretty";
|
||||||
config = {
|
|
||||||
command = "${cfg.format.package}/bin/nimpretty";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -54,32 +54,20 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Nim LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Nim LSP support" // {default = config.vim.lsp.enable;};
|
||||||
server = mkOption {
|
|
||||||
description = "Nim LSP server to use";
|
|
||||||
type = str;
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
servers = mkOption {
|
||||||
description = "Nim LSP server package, or the command to run as a list of strings";
|
type = deprecatedSingleOrListOf "vim.language.nim.lsp.servers" (enum (attrNames servers));
|
||||||
example = ''[lib.getExe pkgs.nimlsp]'';
|
default = defaultServers;
|
||||||
type = either package (listOf str);
|
description = "Nim LSP server to use";
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
format = {
|
format = {
|
||||||
enable = mkEnableOption "Nim formatting" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "Nim formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "Nim formatter to use";
|
type = deprecatedSingleOrListOf "vim.language.nim.format.type" (enum (attrNames formats));
|
||||||
type = enum (attrNames formats);
|
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
description = "Nim formatter to use";
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Nim formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -100,15 +88,26 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.nim-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.nim = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = formats.${cfg.format.type}.config;
|
formatters_by_ft.nim = cfg.format.type;
|
||||||
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
|
|
@ -9,93 +9,37 @@
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.strings) optionalString;
|
inherit (lib.nvim.types) mkGrammarOption diagnostics deprecatedSingleOrListOf;
|
||||||
inherit (lib.types) anything attrsOf enum either listOf nullOr package str;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.types) mkGrammarOption diagnostics;
|
|
||||||
inherit (lib.nvim.lua) expToLua toLuaObject;
|
|
||||||
|
|
||||||
cfg = config.vim.languages.nix;
|
cfg = config.vim.languages.nix;
|
||||||
|
|
||||||
useFormat = "on_attach = default_on_attach";
|
defaultServers = ["nil"];
|
||||||
noFormat = "on_attach = attach_keymaps";
|
|
||||||
|
|
||||||
defaultServer = "nil";
|
|
||||||
packageToCmd = package: defaultCmd:
|
|
||||||
if isList package
|
|
||||||
then expToLua package
|
|
||||||
else ''{"${package}/bin/${defaultCmd}"}'';
|
|
||||||
servers = {
|
servers = {
|
||||||
nil = {
|
nil = {
|
||||||
package = pkgs.nil;
|
enable = true;
|
||||||
internalFormatter = true;
|
cmd = [(getExe pkgs.nil)];
|
||||||
lspConfig = ''
|
filetypes = ["nix"];
|
||||||
lspconfig.nil_ls.setup{
|
root_markers = [".git" "flake.nix"];
|
||||||
capabilities = capabilities,
|
|
||||||
${
|
|
||||||
if cfg.format.enable
|
|
||||||
then useFormat
|
|
||||||
else noFormat
|
|
||||||
},
|
|
||||||
cmd = ${packageToCmd cfg.lsp.package "nil"},
|
|
||||||
${optionalString cfg.format.enable ''
|
|
||||||
settings = {
|
|
||||||
["nil"] = {
|
|
||||||
${optionalString (cfg.format.type == "alejandra")
|
|
||||||
''
|
|
||||||
formatting = {
|
|
||||||
command = {"${cfg.format.package}/bin/alejandra", "--quiet"},
|
|
||||||
},
|
|
||||||
''}
|
|
||||||
${optionalString (cfg.format.type == "nixfmt")
|
|
||||||
''
|
|
||||||
formatting = {
|
|
||||||
command = {"${cfg.format.package}/bin/nixfmt"},
|
|
||||||
},
|
|
||||||
''}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
''}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nixd = let
|
nixd = {
|
||||||
settings.nixd = {
|
enable = true;
|
||||||
inherit (cfg.lsp) options;
|
cmd = [(getExe pkgs.nixd)];
|
||||||
formatting.command =
|
filetypes = ["nix"];
|
||||||
if !cfg.format.enable
|
root_markers = [".git" "flake.nix"];
|
||||||
then null
|
|
||||||
else if cfg.format.type == "alejandra"
|
|
||||||
then ["${cfg.format.package}/bin/alejandra" "--quiet"]
|
|
||||||
else ["${cfg.format.package}/bin/nixfmt"];
|
|
||||||
};
|
|
||||||
in {
|
|
||||||
package = pkgs.nixd;
|
|
||||||
internalFormatter = true;
|
|
||||||
lspConfig = ''
|
|
||||||
lspconfig.nixd.setup{
|
|
||||||
capabilities = capabilities,
|
|
||||||
${
|
|
||||||
if cfg.format.enable
|
|
||||||
then useFormat
|
|
||||||
else noFormat
|
|
||||||
},
|
|
||||||
cmd = ${packageToCmd cfg.lsp.package "nixd"},
|
|
||||||
settings = ${toLuaObject settings},
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "alejandra";
|
defaultFormat = ["alejandra"];
|
||||||
formats = {
|
formats = {
|
||||||
alejandra = {
|
alejandra = {
|
||||||
package = pkgs.alejandra;
|
command = getExe pkgs.alejandra;
|
||||||
};
|
};
|
||||||
|
|
||||||
nixfmt = {
|
nixfmt = {
|
||||||
package = pkgs.nixfmt-rfc-style;
|
command = getExe pkgs.nixfmt-rfc-style;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -136,23 +80,10 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Nix LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Nix LSP support" // {default = config.vim.lsp.enable;};
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.nix.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "Nix LSP server to use";
|
description = "Nix LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Nix LSP server package, or the command to run as a list of strings";
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server "-data" "~/.cache/jdtls/workspace"]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
|
||||||
|
|
||||||
options = mkOption {
|
|
||||||
type = nullOr (attrsOf anything);
|
|
||||||
default = null;
|
|
||||||
description = "Options to pass to nixd LSP server";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -161,15 +92,9 @@ in {
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "Nix formatter to use";
|
description = "Nix formatter to use";
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.nix.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Nix formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extraDiagnostics = {
|
extraDiagnostics = {
|
||||||
|
|
@ -193,13 +118,6 @@ in {
|
||||||
${concatStringsSep ", " (attrNames formats)}
|
${concatStringsSep ", " (attrNames formats)}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
{
|
|
||||||
assertion = cfg.lsp.server != "rnix";
|
|
||||||
message = ''
|
|
||||||
rnix-lsp has been archived upstream. Please use one of the following available language servers:
|
|
||||||
${concatStringsSep ", " (attrNames servers)}
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -209,16 +127,25 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.nix-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf (cfg.format.enable && (!cfg.lsp.enable || !servers.${cfg.lsp.server}.internalFormatter)) {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.nix = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.nix = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -5,27 +5,30 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.types) str either package listOf;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.meta) getExe;
|
||||||
inherit (builtins) isList;
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
inherit (builtins) attrNames;
|
||||||
|
|
||||||
defaultServer = "nushell";
|
defaultServers = ["nushell"];
|
||||||
servers = {
|
servers = {
|
||||||
nushell = {
|
nushell = {
|
||||||
package = pkgs.nushell;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.nushell) "--no-config-file" "--lsp"];
|
||||||
lspconfig.nushell.setup{
|
filetypes = ["nu"];
|
||||||
capabilities = capabilities,
|
root_dir =
|
||||||
on_attach = default_on_attach,
|
mkLuaInline
|
||||||
cmd = ${
|
/*
|
||||||
if isList cfg.lsp.package
|
lua
|
||||||
then expToLua cfg.lsp.package
|
*/
|
||||||
else ''{"${cfg.lsp.package}/bin/nu", "--no-config-file", "--lsp"}''
|
''
|
||||||
}
|
function(bufnr, on_dir)
|
||||||
}
|
on_dir(vim.fs.root(bufnr, { '.git' }) or vim.fs.dirname(vim.api.nvim_buf_get_name(bufnr)))
|
||||||
'';
|
end
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -41,17 +44,11 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Nu LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Nu LSP support" // {default = config.vim.lsp.enable;};
|
||||||
server = mkOption {
|
|
||||||
type = str;
|
|
||||||
default = defaultServer;
|
|
||||||
description = "Nu LSP server to use";
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
servers = mkOption {
|
||||||
type = either package (listOf str);
|
type = deprecatedSingleOrListOf "vim.language.nu.lsp.servers" (enum (attrNames servers));
|
||||||
default = servers.${cfg.lsp.server}.package;
|
default = defaultServers;
|
||||||
example = ''[(lib.getExe pkgs.nushell) "--lsp"]'';
|
description = "Nu LSP server to use";
|
||||||
description = "Nu LSP server package, or the command to run as a list of strings";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -63,8 +60,12 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.nu-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,35 +8,57 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.types) either enum listOf package str;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
cfg = config.vim.languages.ocaml;
|
cfg = config.vim.languages.ocaml;
|
||||||
|
|
||||||
defaultServer = "ocaml-lsp";
|
defaultServers = ["ocaml-lsp"];
|
||||||
servers = {
|
servers = {
|
||||||
ocaml-lsp = {
|
ocaml-lsp = {
|
||||||
package = pkgs.ocamlPackages.ocaml-lsp;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.ocamlPackages.ocaml-lsp)];
|
||||||
lspconfig.ocamllsp.setup {
|
filetypes = ["ocaml" "menhir" "ocamlinterface" "ocamllex" "reason" "dune"];
|
||||||
capabilities = capabilities,
|
root_dir =
|
||||||
on_attach = default_on_attach,
|
mkLuaInline
|
||||||
cmd = ${
|
/*
|
||||||
if isList cfg.lsp.package
|
lua
|
||||||
then expToLua cfg.lsp.package
|
*/
|
||||||
else ''{"${getExe cfg.lsp.package}"}''
|
''
|
||||||
};
|
function(bufnr, on_dir)
|
||||||
}
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
'';
|
on_dir(util.root_pattern('*.opam', 'esy.json', 'package.json', '.git', 'dune-project', 'dune-workspace')(fname))
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
get_language_id =
|
||||||
|
mkLuaInline
|
||||||
|
/*
|
||||||
|
lua
|
||||||
|
*/
|
||||||
|
''
|
||||||
|
function(_, ftype)
|
||||||
|
local language_id_of = {
|
||||||
|
menhir = 'ocaml.menhir',
|
||||||
|
ocaml = 'ocaml',
|
||||||
|
ocamlinterface = 'ocaml.interface',
|
||||||
|
ocamllex = 'ocaml.ocamllex',
|
||||||
|
reason = 'reason',
|
||||||
|
dune = 'dune',
|
||||||
|
}
|
||||||
|
|
||||||
|
return language_id_of[ftype]
|
||||||
|
|
||||||
|
end
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "ocamlformat";
|
defaultFormat = ["ocamlformat"];
|
||||||
formats = {
|
formats = {
|
||||||
ocamlformat = {
|
ocamlformat = {
|
||||||
package = pkgs.ocamlPackages.ocamlformat;
|
command = getExe pkgs.ocamlPackages.ocamlformat;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -49,38 +71,33 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "OCaml LSP support (ocaml-lsp)" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "OCaml LSP support" // {default = config.vim.lsp.enable;};
|
||||||
server = mkOption {
|
|
||||||
description = "OCaml LSP server to user";
|
servers = mkOption {
|
||||||
type = enum (attrNames servers);
|
type = deprecatedSingleOrListOf "vim.language.ocaml.lsp.servers" (enum (attrNames servers));
|
||||||
default = defaultServer;
|
default = defaultServers;
|
||||||
};
|
description = "OCaml LSP server to use";
|
||||||
package = mkOption {
|
|
||||||
description = "OCaml language server package, or the command to run as a list of strings";
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
format = {
|
format = {
|
||||||
enable = mkEnableOption "OCaml formatting support (ocamlformat)" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "OCaml formatting support (ocamlformat)" // {default = config.vim.languages.enableFormat;};
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "OCaml formatter to use";
|
type = deprecatedSingleOrListOf "vim.language.ocaml.format.type" (enum (attrNames formats));
|
||||||
type = enum (attrNames formats);
|
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
description = "OCaml formatter to use";
|
||||||
package = mkOption {
|
|
||||||
description = "OCaml formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.ocaml-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.treesitter.enable {
|
(mkIf cfg.treesitter.enable {
|
||||||
|
|
@ -91,9 +108,14 @@ in {
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.ocaml = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.ocaml = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -7,26 +7,28 @@
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.types) either listOf package str enum;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
defaultServer = "ols";
|
defaultServers = ["ols"];
|
||||||
servers = {
|
servers = {
|
||||||
ols = {
|
ols = {
|
||||||
package = pkgs.ols;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.ols)];
|
||||||
lspconfig.ols.setup {
|
filetypes = ["odin"];
|
||||||
capabilities = capabilities,
|
root_dir =
|
||||||
on_attach = default_on_attach,
|
mkLuaInline
|
||||||
cmd = ${
|
/*
|
||||||
if isList cfg.lsp.package
|
lua
|
||||||
then expToLua cfg.lsp.package
|
*/
|
||||||
else "{'${cfg.lsp.package}/bin/ols'}"
|
''
|
||||||
}
|
function(bufnr, on_dir)
|
||||||
}
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
'';
|
on_dir(util.root_pattern('ols.json', '.git', '*.odin')(fname))
|
||||||
|
end'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -43,17 +45,11 @@ in {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Odin LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Odin LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
type = enum (attrNames servers);
|
type = deprecatedSingleOrListOf "vim.language.odin.lsp.servers" (enum (attrNames servers));
|
||||||
default = defaultServer;
|
default = defaultServers;
|
||||||
description = "Odin LSP server to use";
|
description = "Odin LSP server to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Ols package, or the command to run as a list of strings";
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = pkgs.ols;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -64,8 +60,12 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.odin-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,81 +8,60 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
|
||||||
cfg = config.vim.languages.php;
|
cfg = config.vim.languages.php;
|
||||||
|
|
||||||
defaultServer = "phpactor";
|
defaultServers = ["phpactor"];
|
||||||
servers = {
|
servers = {
|
||||||
phpactor = {
|
phpactor = {
|
||||||
package = pkgs.phpactor;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.phpactor) "language-server"];
|
||||||
lspconfig.phpactor.setup{
|
filetypes = ["php"];
|
||||||
capabilities = capabilities,
|
root_markers = [".git" "composer.json" ".phpactor.json" ".phpactor.yml"];
|
||||||
on_attach = default_on_attach,
|
workspace_required = true;
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''
|
|
||||||
{
|
|
||||||
"${getExe cfg.lsp.package}",
|
|
||||||
"language-server"
|
|
||||||
},
|
|
||||||
''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
phan = {
|
phan = {
|
||||||
package = pkgs.php81Packages.phan;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [
|
||||||
lspconfig.phan.setup{
|
(getExe pkgs.php81Packages.phan)
|
||||||
capabilities = capabilities,
|
"-m"
|
||||||
on_attach = default_on_attach,
|
"json"
|
||||||
cmd = ${
|
"--no-color"
|
||||||
if isList cfg.lsp.package
|
"--no-progress-bar"
|
||||||
then expToLua cfg.lsp.package
|
"-x"
|
||||||
else ''
|
"-u"
|
||||||
{
|
"-S"
|
||||||
"${getExe cfg.lsp.package}",
|
"--language-server-on-stdin"
|
||||||
"-m",
|
"--allow-polyfill-parser"
|
||||||
"json",
|
];
|
||||||
"--no-color",
|
filetypes = ["php"];
|
||||||
"--no-progress-bar",
|
root_dir =
|
||||||
"-x",
|
mkLuaInline
|
||||||
"-u",
|
/*
|
||||||
"-S",
|
lua
|
||||||
"--language-server-on-stdin",
|
*/
|
||||||
"--allow-polyfill-parser"
|
''
|
||||||
},
|
function(bufnr, on_dir)
|
||||||
''
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
}
|
local cwd = assert(vim.uv.cwd())
|
||||||
}
|
local root = vim.fs.root(fname, { 'composer.json', '.git' })
|
||||||
'';
|
|
||||||
|
-- prefer cwd if root is a descendant
|
||||||
|
on_dir(root and vim.fs.relpath(cwd, root) and cwd)
|
||||||
|
end
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
intelephense = {
|
intelephense = {
|
||||||
package = pkgs.intelephense;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.intelephense) "--stdio"];
|
||||||
lspconfig.intelephense.setup{
|
filetypes = ["php"];
|
||||||
capabilities = capabilities,
|
root_markers = ["composer.json" ".git"];
|
||||||
on_attach = default_on_attach,
|
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''
|
|
||||||
{
|
|
||||||
"${getExe cfg.lsp.package}",
|
|
||||||
"--stdio"
|
|
||||||
},
|
|
||||||
''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -97,17 +76,10 @@ in {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "PHP LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "PHP LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.php.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "PHP LSP server to use";
|
description = "PHP LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "PHP LSP server package, or the command to run as a list of strings";
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server " - data " " ~/.cache/jdtls/workspace "]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -117,11 +89,14 @@ in {
|
||||||
vim.treesitter.enable = true;
|
vim.treesitter.enable = true;
|
||||||
vim.treesitter.grammars = [cfg.treesitter.package];
|
vim.treesitter.grammars = [cfg.treesitter.package];
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig = {
|
vim.lsp.servers =
|
||||||
enable = true;
|
mapListToAttrs (n: {
|
||||||
sources.php-lsp = servers.${cfg.lsp.server}.lspConfig;
|
name = n;
|
||||||
};
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,88 +6,152 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption literalExpression;
|
inherit (lib.options) mkEnableOption mkOption literalExpression;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.lists) flatten;
|
||||||
|
inherit (lib.meta) getExe getExe';
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum package bool;
|
||||||
inherit (lib.types) enum either listOf package str bool;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.types) deprecatedSingleOrListOf;
|
||||||
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
inherit (lib.nvim.dag) entryBefore;
|
||||||
|
inherit (lib.trivial) warn;
|
||||||
|
|
||||||
cfg = config.vim.languages.python;
|
cfg = config.vim.languages.python;
|
||||||
|
|
||||||
defaultServer = "basedpyright";
|
defaultServers = ["basedpyright"];
|
||||||
servers = {
|
servers = {
|
||||||
pyright = {
|
pyright = {
|
||||||
package = pkgs.pyright;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe' pkgs.pyright "pyright-langserver") "--stdio"];
|
||||||
lspconfig.pyright.setup{
|
filetypes = ["python"];
|
||||||
capabilities = capabilities;
|
root_markers = [
|
||||||
on_attach = default_on_attach;
|
"pyproject.toml"
|
||||||
cmd = ${
|
"setup.py"
|
||||||
if isList cfg.lsp.package
|
"setup.cfg"
|
||||||
then expToLua cfg.lsp.package
|
"requirements.txt"
|
||||||
else ''{"${cfg.lsp.package}/bin/pyright-langserver", "--stdio"}''
|
"Pipfile"
|
||||||
}
|
"pyrightconfig.json"
|
||||||
}
|
".git"
|
||||||
|
];
|
||||||
|
settings = {
|
||||||
|
python = {
|
||||||
|
analysis = {
|
||||||
|
autoSearchPaths = true;
|
||||||
|
useLibraryCodeForTypes = true;
|
||||||
|
diagnosticMode = "openFilesOnly";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
on_attach = mkLuaInline ''
|
||||||
|
function(client, bufnr)
|
||||||
|
vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightOrganizeImports', function()
|
||||||
|
local params = {
|
||||||
|
command = 'pyright.organizeimports',
|
||||||
|
arguments = { vim.uri_from_bufnr(bufnr) },
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Using client.request() directly because "pyright.organizeimports" is private
|
||||||
|
-- (not advertised via capabilities), which client:exec_cmd() refuses to call.
|
||||||
|
-- https://github.com/neovim/neovim/blob/c333d64663d3b6e0dd9aa440e433d346af4a3d81/runtime/lua/vim/lsp/client.lua#L1024-L1030
|
||||||
|
client.request('workspace/executeCommand', params, nil, bufnr)
|
||||||
|
end, {
|
||||||
|
desc = 'Organize Imports',
|
||||||
|
})
|
||||||
|
vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightSetPythonPath', set_python_path, {
|
||||||
|
desc = 'Reconfigure basedpyright with the provided python path',
|
||||||
|
nargs = 1,
|
||||||
|
complete = 'file',
|
||||||
|
})
|
||||||
|
end
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
basedpyright = {
|
basedpyright = {
|
||||||
package = pkgs.basedpyright;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe' pkgs.basedpyright "basedpyright-langserver") "--stdio"];
|
||||||
lspconfig.basedpyright.setup{
|
filetypes = ["python"];
|
||||||
capabilities = capabilities;
|
root_markers = [
|
||||||
on_attach = default_on_attach;
|
"pyproject.toml"
|
||||||
cmd = ${
|
"setup.py"
|
||||||
if isList cfg.lsp.package
|
"setup.cfg"
|
||||||
then expToLua cfg.lsp.package
|
"requirements.txt"
|
||||||
else ''{"${cfg.lsp.package}/bin/basedpyright-langserver", "--stdio"}''
|
"Pipfile"
|
||||||
}
|
"pyrightconfig.json"
|
||||||
}
|
".git"
|
||||||
|
];
|
||||||
|
settings = {
|
||||||
|
basedpyright = {
|
||||||
|
analysis = {
|
||||||
|
autoSearchPaths = true;
|
||||||
|
useLibraryCodeForTypes = true;
|
||||||
|
diagnosticMode = "openFilesOnly";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
on_attach = mkLuaInline ''
|
||||||
|
function(client, bufnr)
|
||||||
|
vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightOrganizeImports', function()
|
||||||
|
local params = {
|
||||||
|
command = 'basedpyright.organizeimports',
|
||||||
|
arguments = { vim.uri_from_bufnr(bufnr) },
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Using client.request() directly because "basedpyright.organizeimports" is private
|
||||||
|
-- (not advertised via capabilities), which client:exec_cmd() refuses to call.
|
||||||
|
-- https://github.com/neovim/neovim/blob/c333d64663d3b6e0dd9aa440e433d346af4a3d81/runtime/lua/vim/lsp/client.lua#L1024-L1030
|
||||||
|
client.request('workspace/executeCommand', params, nil, bufnr)
|
||||||
|
end, {
|
||||||
|
desc = 'Organize Imports',
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightSetPythonPath', set_python_path, {
|
||||||
|
desc = 'Reconfigure basedpyright with the provided python path',
|
||||||
|
nargs = 1,
|
||||||
|
complete = 'file',
|
||||||
|
})
|
||||||
|
end
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
python-lsp-server = {
|
python-lsp-server = {
|
||||||
package = pkgs.python3Packages.python-lsp-server;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.python3Packages.python-lsp-server)];
|
||||||
lspconfig.pylsp.setup{
|
filetypes = ["python"];
|
||||||
capabilities = capabilities;
|
root_markers = [
|
||||||
on_attach = default_on_attach;
|
"pyproject.toml"
|
||||||
cmd = ${
|
"setup.py"
|
||||||
if isList cfg.lsp.package
|
"setup.cfg"
|
||||||
then expToLua cfg.lsp.package
|
"requirements.txt"
|
||||||
else ''{"${cfg.lsp.package}/bin/pylsp"}''
|
"Pipfile"
|
||||||
}
|
".git"
|
||||||
}
|
];
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "black";
|
defaultFormat = ["black"];
|
||||||
formats = {
|
formats = {
|
||||||
black = {
|
black = {
|
||||||
package = pkgs.black;
|
command = getExe pkgs.black;
|
||||||
};
|
};
|
||||||
|
|
||||||
isort = {
|
isort = {
|
||||||
package = pkgs.isort;
|
command = getExe pkgs.isort;
|
||||||
};
|
};
|
||||||
|
|
||||||
black-and-isort = {
|
# dummy option for backwards compat
|
||||||
package = pkgs.writeShellApplication {
|
black-and-isort = {};
|
||||||
name = "black";
|
|
||||||
runtimeInputs = [pkgs.black pkgs.isort];
|
|
||||||
text = ''
|
|
||||||
black --quiet - "$@" | isort --profile black -
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
ruff = {
|
ruff = {
|
||||||
|
command = getExe pkgs.ruff;
|
||||||
|
args = ["format" "-"];
|
||||||
|
};
|
||||||
|
|
||||||
|
ruff-check = {
|
||||||
package = pkgs.writeShellApplication {
|
package = pkgs.writeShellApplication {
|
||||||
name = "ruff";
|
name = "ruff-check";
|
||||||
runtimeInputs = [pkgs.ruff];
|
runtimeInputs = [pkgs.ruff];
|
||||||
text = ''
|
text = ''
|
||||||
ruff format -
|
ruff check --fix --exit-zero -
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -171,17 +235,10 @@ in {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Python LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Python LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.python.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "Python LSP server to use";
|
description = "Python LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "python LSP server package, or the command to run as a list of strings";
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server "-data" "~/.cache/jdtls/workspace"]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -189,30 +246,24 @@ in {
|
||||||
enable = mkEnableOption "Python formatting" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "Python formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "Python formatter to use";
|
type = deprecatedSingleOrListOf "vim.language.python.format.type" (enum (attrNames formats));
|
||||||
type = enum (attrNames formats);
|
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
description = "Python formatters to use";
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Python formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO this implementation is very bare bones, I don't know enough python to implement everything
|
# TODO this implementation is very bare bones, I don't know enough python to implement everything
|
||||||
dap = {
|
dap = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
description = "Enable Python Debug Adapter";
|
|
||||||
type = bool;
|
type = bool;
|
||||||
default = config.vim.languages.enableDAP;
|
default = config.vim.languages.enableDAP;
|
||||||
|
description = "Enable Python Debug Adapter";
|
||||||
};
|
};
|
||||||
|
|
||||||
debugger = mkOption {
|
debugger = mkOption {
|
||||||
description = "Python debugger to use";
|
|
||||||
type = enum (attrNames debuggers);
|
type = enum (attrNames debuggers);
|
||||||
default = defaultDebugger;
|
default = defaultDebugger;
|
||||||
|
description = "Python debugger to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
|
|
@ -234,26 +285,59 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.luaConfigRC.python-util =
|
||||||
vim.lsp.lspconfig.sources.python-lsp = servers.${cfg.lsp.server}.lspConfig;
|
entryBefore ["lsp-servers"]
|
||||||
|
/*
|
||||||
|
lua
|
||||||
|
*/
|
||||||
|
''
|
||||||
|
local function set_python_path(server_name, command)
|
||||||
|
local path = command.args
|
||||||
|
local clients = vim.lsp.get_clients {
|
||||||
|
bufnr = vim.api.nvim_get_current_buf(),
|
||||||
|
name = server_name,
|
||||||
|
}
|
||||||
|
for _, client in ipairs(clients) do
|
||||||
|
if client.settings then
|
||||||
|
client.settings.python = vim.tbl_deep_extend('force', client.settings.python or {}, { pythonPath = path })
|
||||||
|
else
|
||||||
|
client.config.settings = vim.tbl_deep_extend('force', client.config.settings, { python = { pythonPath = path } })
|
||||||
|
end
|
||||||
|
client:notify('workspace/didChangeConfiguration', { settings = nil })
|
||||||
|
end
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
|
||||||
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = let
|
||||||
|
names = flatten (map (type:
|
||||||
|
if type == "black-and-isort"
|
||||||
|
then
|
||||||
|
warn ''
|
||||||
|
vim.languages.python.format.type: "black-and-isort" is deprecated,
|
||||||
|
use `["black" "isort"]` instead.
|
||||||
|
'' ["black" "isort"]
|
||||||
|
else type)
|
||||||
|
cfg.format.type);
|
||||||
|
in {
|
||||||
enable = true;
|
enable = true;
|
||||||
# HACK: I'm planning to remove these soon so I just took the easiest way out
|
setupOpts = {
|
||||||
setupOpts.formatters_by_ft.python =
|
formatters_by_ft.python = names;
|
||||||
if cfg.format.type == "black-and-isort"
|
formatters =
|
||||||
then ["black"]
|
mapListToAttrs (name: {
|
||||||
else [cfg.format.type];
|
inherit name;
|
||||||
setupOpts.formatters =
|
value = formats.${name};
|
||||||
if (cfg.format.type == "black-and-isort")
|
})
|
||||||
then {
|
names;
|
||||||
black.command = "${cfg.format.package}/bin/black";
|
};
|
||||||
}
|
|
||||||
else {
|
|
||||||
${cfg.format.type}.command = getExe cfg.format.package;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
95
modules/plugins/languages/qml.nix
Normal file
95
modules/plugins/languages/qml.nix
Normal file
|
|
@ -0,0 +1,95 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (builtins) attrNames;
|
||||||
|
inherit (lib.meta) getExe';
|
||||||
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
|
inherit (lib.types) enum;
|
||||||
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
|
cfg = config.vim.languages.qml;
|
||||||
|
|
||||||
|
qmlPackage = pkgs.kdePackages.qtdeclarative;
|
||||||
|
|
||||||
|
defaultServers = ["qmlls"];
|
||||||
|
servers = {
|
||||||
|
qmlls = {
|
||||||
|
cmd = [(getExe' qmlPackage "qmlls")];
|
||||||
|
filetypes = ["qml" "qmljs"];
|
||||||
|
rootmarkers = [".git"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
defaultFormat = ["qmlformat"];
|
||||||
|
formats = {
|
||||||
|
qmlformat = {
|
||||||
|
command = "${qmlPackage}/bin/qmlformat";
|
||||||
|
args = ["-i" "$FILENAME"];
|
||||||
|
stdin = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
options.vim.languages.qml = {
|
||||||
|
enable = mkEnableOption "QML language support";
|
||||||
|
treesitter = {
|
||||||
|
enable = mkEnableOption "QML treesitter support" // {default = config.vim.languages.enableTreesitter;};
|
||||||
|
package = mkGrammarOption pkgs "qmljs";
|
||||||
|
};
|
||||||
|
|
||||||
|
lsp = {
|
||||||
|
enable = mkEnableOption "QML LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.qml.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
|
description = "QML LSP server to use";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
format = {
|
||||||
|
enable = mkEnableOption "QML formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
|
type = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.qml.format.type" (enum (attrNames formats));
|
||||||
|
default = defaultFormat;
|
||||||
|
description = "QML formatter to use";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable (mkMerge [
|
||||||
|
(mkIf cfg.treesitter.enable {
|
||||||
|
vim.treesitter = {
|
||||||
|
enable = true;
|
||||||
|
grammars = [cfg.treesitter.package];
|
||||||
|
};
|
||||||
|
})
|
||||||
|
(mkIf cfg.lsp.enable {
|
||||||
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf (cfg.format.enable && !cfg.lsp.enable) {
|
||||||
|
vim.formatter.conform-nvim = {
|
||||||
|
enable = true;
|
||||||
|
setupOpts = {
|
||||||
|
formatters_by_ft.qml = cfg.format.type;
|
||||||
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
@ -5,12 +5,13 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption literalExpression;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.types) mkGrammarOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
|
||||||
cfg = config.vim.languages.r;
|
cfg = config.vim.languages.r;
|
||||||
|
|
||||||
|
|
@ -18,54 +19,44 @@
|
||||||
packages = [pkgs.rPackages.languageserver];
|
packages = [pkgs.rPackages.languageserver];
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "format_r";
|
defaultFormat = ["format_r"];
|
||||||
formats = {
|
formats = {
|
||||||
styler = {
|
styler = {
|
||||||
package = pkgs.rWrapper.override {
|
command = let
|
||||||
packages = [pkgs.rPackages.styler];
|
pkg = pkgs.rWrapper.override {packages = [pkgs.rPackages.styler];};
|
||||||
};
|
in "${pkg}/bin/R";
|
||||||
config = {
|
|
||||||
command = "${cfg.format.package}/bin/R";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
format_r = {
|
format_r = {
|
||||||
package = pkgs.rWrapper.override {
|
command = let
|
||||||
packages = [pkgs.rPackages.formatR];
|
pkg = pkgs.rWrapper.override {
|
||||||
};
|
packages = [pkgs.rPackages.formatR];
|
||||||
config = {
|
};
|
||||||
command = "${cfg.format.package}/bin/R";
|
in "${pkg}/bin/R";
|
||||||
stdin = true;
|
stdin = true;
|
||||||
args = [
|
args = [
|
||||||
"--slave"
|
"--slave"
|
||||||
"--no-restore"
|
"--no-restore"
|
||||||
"--no-save"
|
"--no-save"
|
||||||
"-s"
|
"-s"
|
||||||
"-e"
|
"-e"
|
||||||
''formatR::tidy_source(source="stdin")''
|
''formatR::tidy_source(source="stdin")''
|
||||||
];
|
];
|
||||||
# TODO: range_args seem to be possible
|
# TODO: range_args seem to be possible
|
||||||
# https://github.com/nvimtools/none-ls.nvim/blob/main/lua/null-ls/builtins/formatting/format_r.lua
|
# https://github.com/nvimtools/none-ls.nvim/blob/main/lua/null-ls/builtins/formatting/format_r.lua
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultServer = "r_language_server";
|
defaultServers = ["r_language_server"];
|
||||||
servers = {
|
servers = {
|
||||||
r_language_server = {
|
r_language_server = {
|
||||||
package = pkgs.writeShellScriptBin "r_lsp" ''
|
enable = true;
|
||||||
${r-with-languageserver}/bin/R --slave -e "languageserver::run()"
|
cmd = [(getExe r-with-languageserver) "--no-echo" "-e" "languageserver::run()"];
|
||||||
'';
|
filetypes = ["r" "rmd" "quarto"];
|
||||||
lspConfig = ''
|
root_dir = mkLuaInline ''
|
||||||
lspconfig.r_language_server.setup{
|
function(bufnr, on_dir)
|
||||||
capabilities = capabilities;
|
on_dir(vim.fs.root(bufnr, '.git') or vim.uv.os_homedir())
|
||||||
on_attach = default_on_attach;
|
end
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{"${lib.getExe cfg.lsp.package}"}''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -81,17 +72,10 @@ in {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "R LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "R LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.r.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "R LSP server to use";
|
description = "R LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "R LSP server package, or the command to run as a list of strings";
|
|
||||||
example = literalExpression "[ (lib.getExe pkgs.jdt-language-server) \"-data\" \"~/.cache/jdtls/workspace\" ]";
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -99,16 +83,10 @@ in {
|
||||||
enable = mkEnableOption "R formatting" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "R formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.r.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
description = "R formatter to use";
|
description = "R formatter to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
description = "R formatter package";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -121,14 +99,25 @@ in {
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.r = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = formats.${cfg.format.type}.config;
|
formatters_by_ft.r = cfg.format.type;
|
||||||
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.r-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,55 +8,51 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.nvim.types) mkGrammarOption diagnostics;
|
inherit (lib.nvim.types) mkGrammarOption diagnostics deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.types) enum;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.types) either listOf package str enum;
|
|
||||||
|
|
||||||
cfg = config.vim.languages.ruby;
|
cfg = config.vim.languages.ruby;
|
||||||
|
|
||||||
defaultServer = "rubyserver";
|
defaultServers = ["solargraph"];
|
||||||
servers = {
|
servers = {
|
||||||
rubyserver = {
|
ruby_lsp = {
|
||||||
package = pkgs.rubyPackages.solargraph;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.ruby-lsp)];
|
||||||
lspconfig.solargraph.setup {
|
filetypes = ["ruby" "eruby"];
|
||||||
capabilities = capabilities,
|
root_markers = ["Gemfile" ".git"];
|
||||||
on_attach = attach_keymaps,
|
init_options = {
|
||||||
flags = {
|
formatter = "auto";
|
||||||
debounce_text_changes = 150,
|
};
|
||||||
},
|
|
||||||
cmd = ${
|
|
||||||
if isList cfg.lsp.package
|
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{ "${cfg.lsp.package}/bin/solargraph", "stdio" }''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
rubylsp = {
|
|
||||||
package = pkgs.ruby-lsp;
|
solargraph = {
|
||||||
lspConfig = ''
|
enable = true;
|
||||||
lspconfig.ruby_lsp.setup {
|
cmd = [(getExe pkgs.rubyPackages.solargraph) "stdio"];
|
||||||
capabilities = capabilities,
|
filetypes = ["ruby"];
|
||||||
on_attach = default_on_attach,
|
root_markers = ["Gemfile" ".git"];
|
||||||
cmd = ${
|
settings = {
|
||||||
if isList cfg.lsp.package
|
solargraph = {
|
||||||
then expToLua cfg.lsp.package
|
diagnostics = true;
|
||||||
else ''{ "${cfg.lsp.package}/bin/ruby-lsp" }''
|
};
|
||||||
}
|
};
|
||||||
}
|
|
||||||
'';
|
flags = {
|
||||||
|
debounce_text_changes = 150;
|
||||||
|
};
|
||||||
|
|
||||||
|
init_options = {
|
||||||
|
formatting = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# testing
|
# testing
|
||||||
|
|
||||||
defaultFormat = "rubocop";
|
defaultFormat = ["rubocop"];
|
||||||
formats = {
|
formats = {
|
||||||
rubocop = {
|
rubocop = {
|
||||||
# TODO: is this right?
|
command = getExe pkgs.rubyPackages.rubocop;
|
||||||
package = pkgs.rubyPackages.rubocop;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -64,7 +60,6 @@
|
||||||
diagnosticsProviders = {
|
diagnosticsProviders = {
|
||||||
rubocop = {
|
rubocop = {
|
||||||
package = pkgs.rubyPackages.rubocop;
|
package = pkgs.rubyPackages.rubocop;
|
||||||
config.command = getExe cfg.format.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -79,33 +74,21 @@ in {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Ruby LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Ruby LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
type = enum (attrNames servers);
|
type = deprecatedSingleOrListOf "vim.language.ruby.lsp.servers" (enum (attrNames servers));
|
||||||
default = defaultServer;
|
default = defaultServers;
|
||||||
description = "Ruby LSP server to use";
|
description = "Ruby LSP server to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
description = "Ruby LSP server package, or the command to run as a list of strings";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
format = {
|
format = {
|
||||||
enable = mkEnableOption "Ruby formatter support" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "Ruby formatter support" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.ruby.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
description = "Ruby formatter to use";
|
description = "Ruby formatter to use";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
description = "Ruby formatter package";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extraDiagnostics = {
|
extraDiagnostics = {
|
||||||
|
|
@ -128,16 +111,25 @@ in {
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.servers =
|
||||||
vim.lsp.lspconfig.sources.ruby-lsp = servers.${cfg.lsp.server}.lspConfig;
|
mapListToAttrs (n: {
|
||||||
|
name = n;
|
||||||
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.ruby = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.ruby = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -4,24 +4,24 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (builtins) attrNames;
|
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.options) mkOption mkEnableOption literalMD;
|
inherit (lib.options) mkOption mkEnableOption literalMD;
|
||||||
inherit (lib.strings) optionalString;
|
inherit (lib.strings) optionalString;
|
||||||
inherit (lib.trivial) boolToString;
|
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.lists) isList;
|
||||||
inherit (lib.types) bool package str listOf either enum;
|
inherit (lib.attrsets) attrNames;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.types) bool package str listOf either enum int;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.lua) expToLua toLuaObject;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
inherit (lib.nvim.types) mkGrammarOption mkPluginSetupOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.dag) entryAfter entryAnywhere;
|
inherit (lib.nvim.dag) entryAfter entryAnywhere;
|
||||||
|
|
||||||
cfg = config.vim.languages.rust;
|
cfg = config.vim.languages.rust;
|
||||||
|
|
||||||
defaultFormat = "rustfmt";
|
defaultFormat = ["rustfmt"];
|
||||||
formats = {
|
formats = {
|
||||||
rustfmt = {
|
rustfmt = {
|
||||||
package = pkgs.rustfmt;
|
command = getExe pkgs.rustfmt;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
@ -33,15 +33,6 @@ in {
|
||||||
package = mkGrammarOption pkgs "rust";
|
package = mkGrammarOption pkgs "rust";
|
||||||
};
|
};
|
||||||
|
|
||||||
crates = {
|
|
||||||
enable = mkEnableOption "crates-nvim, tools for managing dependencies";
|
|
||||||
codeActions = mkOption {
|
|
||||||
description = "Enable code actions through null-ls";
|
|
||||||
type = bool;
|
|
||||||
default = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "Rust LSP support (rust-analyzer with extra tools)" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "Rust LSP support (rust-analyzer with extra tools)" // {default = config.vim.lsp.enable;};
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
|
|
@ -79,15 +70,9 @@ in {
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "Rust formatter to use";
|
description = "Rust formatter to use";
|
||||||
type = enum (attrNames formats);
|
type = deprecatedSingleOrListOf "vim.language.rust.format.type" (enum (attrNames formats));
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "Rust formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
dap = {
|
dap = {
|
||||||
|
|
@ -103,25 +88,39 @@ in {
|
||||||
default = pkgs.lldb;
|
default = pkgs.lldb;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extensions = {
|
||||||
|
crates-nvim = {
|
||||||
|
enable = mkEnableOption "crates.io dependency management [crates-nvim]";
|
||||||
|
|
||||||
|
setupOpts = mkPluginSetupOption "crates-nvim" {
|
||||||
|
lsp = {
|
||||||
|
enabled = mkEnableOption "crates.nvim's in-process language server" // {default = cfg.extensions.crates-nvim.enable;};
|
||||||
|
actions = mkEnableOption "actions for crates-nvim's in-process language server" // {default = cfg.extensions.crates-nvim.enable;};
|
||||||
|
completion = mkEnableOption "completion for crates-nvim's in-process language server" // {default = cfg.extensions.crates-nvim.enable;};
|
||||||
|
hover = mkEnableOption "hover actions for crates-nvim's in-process language server" // {default = cfg.extensions.crates-nvim.enable;};
|
||||||
|
};
|
||||||
|
completion = {
|
||||||
|
crates = {
|
||||||
|
enabled = mkEnableOption "completion for crates-nvim's in-process language server" // {default = cfg.extensions.crates-nvim.enable;};
|
||||||
|
max_results = mkOption {
|
||||||
|
description = "The maximum number of search results to display";
|
||||||
|
type = int;
|
||||||
|
default = 8;
|
||||||
|
};
|
||||||
|
min_chars = mkOption {
|
||||||
|
description = "The minimum number of characters to type before completions begin appearing";
|
||||||
|
type = int;
|
||||||
|
default = 3;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
(mkIf cfg.crates.enable {
|
|
||||||
vim = {
|
|
||||||
startPlugins = ["crates-nvim"];
|
|
||||||
lsp.null-ls.enable = mkIf cfg.crates.codeActions true;
|
|
||||||
autocomplete.nvim-cmp.sources = {crates = "[Crates]";};
|
|
||||||
pluginRC.rust-crates = entryAnywhere ''
|
|
||||||
require('crates').setup {
|
|
||||||
null_ls = {
|
|
||||||
enabled = ${boolToString cfg.crates.codeActions},
|
|
||||||
name = "crates.nvim",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
})
|
|
||||||
|
|
||||||
(mkIf cfg.treesitter.enable {
|
(mkIf cfg.treesitter.enable {
|
||||||
vim.treesitter.enable = true;
|
vim.treesitter.enable = true;
|
||||||
vim.treesitter.grammars = [cfg.treesitter.package];
|
vim.treesitter.grammars = [cfg.treesitter.package];
|
||||||
|
|
@ -130,9 +129,14 @@ in {
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.rust = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = {
|
formatters_by_ft.rust = cfg.format.type;
|
||||||
command = getExe cfg.format.package;
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
@ -140,7 +144,6 @@ in {
|
||||||
(mkIf (cfg.lsp.enable || cfg.dap.enable) {
|
(mkIf (cfg.lsp.enable || cfg.dap.enable) {
|
||||||
vim = {
|
vim = {
|
||||||
startPlugins = ["rustaceanvim"];
|
startPlugins = ["rustaceanvim"];
|
||||||
|
|
||||||
pluginRC.rustaceanvim = entryAfter ["lsp-setup"] ''
|
pluginRC.rustaceanvim = entryAfter ["lsp-setup"] ''
|
||||||
vim.g.rustaceanvim = {
|
vim.g.rustaceanvim = {
|
||||||
${optionalString cfg.lsp.enable ''
|
${optionalString cfg.lsp.enable ''
|
||||||
|
|
@ -199,5 +202,16 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.extensions.crates-nvim.enable {
|
||||||
|
vim = mkMerge [
|
||||||
|
{
|
||||||
|
startPlugins = ["crates-nvim"];
|
||||||
|
pluginRC.rust-crates = entryAnywhere ''
|
||||||
|
require("crates").setup(${toLuaObject cfg.extensions.crates-nvim.setupOpts})
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
];
|
||||||
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,43 +8,36 @@
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.meta) getExe;
|
inherit (lib.meta) getExe;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.types) enum package str;
|
||||||
inherit (lib.types) enum either listOf package str;
|
inherit (lib.nvim.types) diagnostics deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.lua) expToLua;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.types) diagnostics;
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
|
||||||
cfg = config.vim.languages.sql;
|
cfg = config.vim.languages.sql;
|
||||||
sqlfluffDefault = pkgs.sqlfluff;
|
sqlfluffDefault = pkgs.sqlfluff;
|
||||||
|
|
||||||
defaultServer = "sqls";
|
defaultServers = ["sqls"];
|
||||||
servers = {
|
servers = {
|
||||||
sqls = {
|
sqls = {
|
||||||
package = pkgs.sqls;
|
enable = true;
|
||||||
lspConfig = ''
|
cmd = [(getExe pkgs.sqls)];
|
||||||
lspconfig.sqls.setup {
|
filetypes = ["sql" "mysql"];
|
||||||
on_attach = function(client)
|
root_markers = ["config.yml"];
|
||||||
client.server_capabilities.execute_command = true
|
settings = {};
|
||||||
on_attach_keymaps(client, bufnr)
|
on_attach = mkLuaInline ''
|
||||||
require'sqls'.setup{}
|
function(client, bufnr)
|
||||||
end,
|
client.server_capabilities.execute_command = true
|
||||||
cmd = ${
|
require'sqls'.setup{}
|
||||||
if isList cfg.lsp.package
|
end
|
||||||
then expToLua cfg.lsp.package
|
|
||||||
else ''{ "${cfg.lsp.package}/bin/sqls", "-config", string.format("%s/config.yml", vim.fn.getcwd()) }''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFormat = "sqlfluff";
|
defaultFormat = ["sqlfluff"];
|
||||||
formats = {
|
formats = {
|
||||||
sqlfluff = {
|
sqlfluff = {
|
||||||
package = sqlfluffDefault;
|
command = getExe sqlfluffDefault;
|
||||||
config = {
|
append_args = ["--dialect=${cfg.dialect}"];
|
||||||
command = getExe cfg.format.package;
|
|
||||||
append_args = ["--dialect=${cfg.dialect}"];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -63,35 +56,28 @@ in {
|
||||||
enable = mkEnableOption "SQL language support";
|
enable = mkEnableOption "SQL language support";
|
||||||
|
|
||||||
dialect = mkOption {
|
dialect = mkOption {
|
||||||
description = "SQL dialect for sqlfluff (if used)";
|
|
||||||
type = str;
|
type = str;
|
||||||
default = "ansi";
|
default = "ansi";
|
||||||
|
description = "SQL dialect for sqlfluff (if used)";
|
||||||
};
|
};
|
||||||
|
|
||||||
treesitter = {
|
treesitter = {
|
||||||
enable = mkEnableOption "SQL treesitter" // {default = config.vim.languages.enableTreesitter;};
|
enable = mkEnableOption "SQL treesitter" // {default = config.vim.languages.enableTreesitter;};
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
description = "SQL treesitter grammar to use";
|
|
||||||
type = package;
|
type = package;
|
||||||
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.sql;
|
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.sql;
|
||||||
|
description = "SQL treesitter grammar to use";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "SQL LSP support" // {default = config.vim.lsp.enable;};
|
enable = mkEnableOption "SQL LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
|
||||||
server = mkOption {
|
servers = mkOption {
|
||||||
|
type = deprecatedSingleOrListOf "vim.language.sql.lsp.servers" (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
description = "SQL LSP server to use";
|
description = "SQL LSP server to use";
|
||||||
type = enum (attrNames servers);
|
|
||||||
default = defaultServer;
|
|
||||||
};
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "SQL LSP server package, or the command to run as a list of strings";
|
|
||||||
example = ''[lib.getExe pkgs.jdt-language-server "-data" "~/.cache/jdtls/workspace"]'';
|
|
||||||
type = either package (listOf str);
|
|
||||||
default = servers.${cfg.lsp.server}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -99,15 +85,9 @@ in {
|
||||||
enable = mkEnableOption "SQL formatting" // {default = config.vim.languages.enableFormat;};
|
enable = mkEnableOption "SQL formatting" // {default = config.vim.languages.enableFormat;};
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "SQL formatter to use";
|
type = deprecatedSingleOrListOf "vim.language.sql.format.type" (enum (attrNames formats));
|
||||||
type = enum (attrNames formats);
|
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
description = "SQL formatter to use";
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
description = "SQL formatter package";
|
|
||||||
type = package;
|
|
||||||
default = formats.${cfg.format.type}.package;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -132,18 +112,27 @@ in {
|
||||||
vim = {
|
vim = {
|
||||||
startPlugins = ["sqls-nvim"];
|
startPlugins = ["sqls-nvim"];
|
||||||
|
|
||||||
lsp.lspconfig = {
|
lsp.servers =
|
||||||
enable = true;
|
mapListToAttrs (n: {
|
||||||
sources.sql-lsp = servers.${cfg.lsp.server}.lspConfig;
|
name = n;
|
||||||
};
|
value = servers.${n};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.format.enable {
|
(mkIf cfg.format.enable {
|
||||||
vim.formatter.conform-nvim = {
|
vim.formatter.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setupOpts.formatters_by_ft.sql = [cfg.format.type];
|
setupOpts = {
|
||||||
setupOpts.formatters.${cfg.format.type} = formats.${cfg.format.type}.config;
|
formatters_by_ft.sql = cfg.format.type;
|
||||||
|
formatters =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = formats.${name};
|
||||||
|
})
|
||||||
|
cfg.format.type;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue