mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-10 15:35:30 +00:00
Merge branch 'NotAShelf:main' into feature-language-tex
This commit is contained in:
commit
1b983561a4
41 changed files with 879 additions and 232 deletions
|
|
@ -102,7 +102,7 @@ in
|
|||
--script script/anchor-use.js \
|
||||
--script script/anchor-min.js \
|
||||
--script script/search.js \
|
||||
--toc-depth 2 \
|
||||
--toc-depth 1 \
|
||||
--section-toc-depth 1 \
|
||||
manual.md \
|
||||
"$dest/index.xhtml"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,13 @@
|
|||
# Neovim Flake Configuration Options {#ch-options}
|
||||
# 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 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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
# Helpful Tips {#ch-helpful-tips}
|
||||
|
||||
```{=include=} chapters
|
||||
tips/pure-lua-config.md
|
||||
tips/debugging-nvf.md
|
||||
tips/offline-docs.md
|
||||
```
|
||||
|
|
|
|||
|
|
@ -17,3 +17,9 @@ nvf-print-config | bat --language=lua
|
|||
```
|
||||
|
||||
Alternatively, `cat` or `less` may also be used.
|
||||
|
||||
## Accessing `neovimConfig` {#sec-accessing-config}
|
||||
|
||||
It is also possible to access the configuration for the wrapped package. The
|
||||
_built_ Neovim package will contain a `neovimConfig` attribute in its
|
||||
`passthru`.
|
||||
|
|
|
|||
117
docs/manual/tips/pure-lua-config.md
Normal file
117
docs/manual/tips/pure-lua-config.md
Normal file
|
|
@ -0,0 +1,117 @@
|
|||
# Pure Lua Configuration {#sec-pure-lua-config}
|
||||
|
||||
We recognize that you might not always want to configure your setup purely in
|
||||
Nix, sometimes doing things in Lua is simply the "superior" option. In such a
|
||||
case you might want to configure your Neovim instance using Lua, and nothing but
|
||||
Lua. It is also possible to mix Lua and Nix configurations.
|
||||
|
||||
Pure Lua or hybrid Lua/Nix configurations can be achieved in two different ways.
|
||||
_Purely_, by modifying Neovim's runtime directory or _impurely_ by placing Lua
|
||||
configuration in a directory found in `$HOME`. For your convenience, this
|
||||
section will document both methods as they can be used.
|
||||
|
||||
## Pure Runtime Directory {#sec-pure-nvf-runtime}
|
||||
|
||||
As of 0.6, nvf allows you to modify Neovim's runtime path to suit your needs.
|
||||
One of the ways the new runtime option is to add a configuration **located
|
||||
relative to your `flake.nix`**, which must be version controlled in pure flakes
|
||||
manner.
|
||||
|
||||
```nix
|
||||
{
|
||||
# Let us assume we are in the repository root, i.e., the same directory as the
|
||||
# flake.nix. For the sake of the argument, we will assume that the Neovim lua
|
||||
# configuration is in a nvim/ directory relative to flake.nix.
|
||||
vim = {
|
||||
additionalRuntimeDirectories = [
|
||||
# This will be added to Neovim's runtime paths. Conceptually, this behaves
|
||||
# very similarly to ~/.config/nvim but you may not place a top-level
|
||||
# init.lua to be able to require it directly.
|
||||
./nvim
|
||||
];
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
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
|
||||
directory. You may now create a `lua/myconfig` directory within this nvim
|
||||
directory, and call it with [](#opt-vim.luaConfigRC).
|
||||
|
||||
```nix
|
||||
{pkgs, ...}: {
|
||||
vim = {
|
||||
additionalRuntimeDirectories = [
|
||||
# You can list more than one file here.
|
||||
./nvim-custom-1
|
||||
|
||||
# To make sure list items are ordered, use lib.mkBefore or lib.mkAfter
|
||||
# Simply placing list items in a given order will **not** ensure that
|
||||
# this list will be deterministic.
|
||||
./nvim-custom-2
|
||||
];
|
||||
|
||||
startPlugins = [pkgs.vimPlugins.gitsigns];
|
||||
|
||||
# Neovim supports in-line syntax highlighting for multi-line strings.
|
||||
# Simply place the filetype in a /* comment */ before the line.
|
||||
luaConfigRC.myconfig = /* lua */ ''
|
||||
-- Call the Lua module from ./nvim/lua/myconfig
|
||||
require("myconfig")
|
||||
|
||||
-- Any additional Lua configuration that you might want *after* your own
|
||||
-- configuration. For example, a plugin setup call.
|
||||
require('gitsigns').setup({})
|
||||
'';
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
## Impure Absolute Directory {#sec-impure-absolute-dir}
|
||||
|
||||
[Neovim 0.9]: https://github.com/neovim/neovim/pull/22128
|
||||
|
||||
As of [Neovim 0.9], {var}`$NVIM_APPNAME` is a variable expected by Neovim to
|
||||
decide on the configuration directory. nvf sets this variable as `"nvf"`,
|
||||
meaning `~/.config/nvf` will be regarded as _the_ configuration directory by
|
||||
Neovim, similar to how `~/.config/nvim` behaves in regular installations. This
|
||||
allows some degree of Lua configuration, backed by our low-level wrapper
|
||||
[mnw](https://github.com/Gerg-L/mnw). Creating a `lua/` directory located in
|
||||
`$NVIM_APPNAME` ("nvf" by default) and placing your configuration in, e.g.,
|
||||
`~/.config/nvf/lua/myconfig` will allow you to `require` it as a part of the Lua
|
||||
module system through nvf's module system.
|
||||
|
||||
Let's assume your `~/.config/nvf/lua/myconfig/init.lua` consists of the
|
||||
following:
|
||||
|
||||
```lua
|
||||
-- init.lua
|
||||
vim.keymap.set("n", " ", "<Nop>", { silent = true, remap = false })
|
||||
vim.g.mapleader = " "
|
||||
```
|
||||
|
||||
The following Nix configuration via [](#opt-vim.luaConfigRC) will allow loading
|
||||
this
|
||||
|
||||
```nix
|
||||
{
|
||||
# The attribute name "myconfig-dir" here is arbitrary. It is required to be
|
||||
# a *named* attribute by the DAG system, but the name is entirely up to you.
|
||||
vim.luaConfigRC.myconfig-dir = ''
|
||||
require("myconfig")
|
||||
|
||||
-- Any additional Lua
|
||||
'';
|
||||
}
|
||||
```
|
||||
|
||||
[DAG system]: https://notashelf.github.io/nvf/index.xhtml#ch-using-dags
|
||||
|
||||
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
|
||||
without a wrapper like nvf. If you want to place your `require` call in a
|
||||
specific position (i.e., before or after options you set in nvf) the
|
||||
[DAG system] will let you place your configuration in a location of your
|
||||
choosing.
|
||||
|
||||
[top-level DAG system]: https://notashelf.github.io/nvf/index.xhtml#ch-vim-luaconfigrc
|
||||
|
|
@ -47,6 +47,12 @@
|
|||
|
||||
- Add Haskell support under `vim.languages.haskell` using [haskell-tools.nvim].
|
||||
|
||||
[horriblename](https://github.com/horriblename):
|
||||
|
||||
[blink.cmp]: https://github.com/saghen/blink.cmp
|
||||
|
||||
- Add [blink.cmp] support
|
||||
|
||||
[diniamo](https://github.com/diniamo):
|
||||
|
||||
- Add Odin support under `vim.languages.odin`.
|
||||
|
|
@ -139,3 +145,7 @@
|
|||
|
||||
- Add `vim.languages.zig.dap` support through pkgs.lldb dap adapter. Code
|
||||
Inspiration from `vim.languages.clang.dap` implementation.
|
||||
|
||||
[nezia1](https://github.com/nezia1)
|
||||
|
||||
- Add support for [nixd](https://github.com/nix-community/nixd) language server.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue