mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-09 20:01:34 +00:00
change: fix release note
This commit is contained in:
commit
03f477ad93
9 changed files with 275 additions and 31 deletions
|
@ -1,13 +1,16 @@
|
|||
.TH "nvf" "5" "01/01/1980" "nvf"
|
||||
.TH "nvf" "5" "January 1, 1980" "nvf"
|
||||
.\" disable hyphenation
|
||||
.nh
|
||||
.\" disable justification (adjust text to left margin only)
|
||||
.ad l
|
||||
.\" enable line breaks after slashes
|
||||
.cflags 4 /
|
||||
|
||||
.SH "NAME"
|
||||
nvf configuration specification
|
||||
.SH "OPTIONS"
|
||||
.PP
|
||||
You can use the following options to configure nvf:
|
||||
.PP
|
||||
nvf \- Configuration specification for the nvf.
|
||||
|
||||
.SH "DESCRIPTION"
|
||||
The nvf configuration specification provides a declarative structure for configuring Neovim using Nix with few
|
||||
lines of Nix. This document outlines the available options and their usage to create modular, reusable, and
|
||||
reproducible configurations using nvf's module system options. For tips, tricks and possible quirks with available
|
||||
plugins please visit https://notashelf.github.io/nvf/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.Dd January 1, 1980
|
||||
.Dt nvf 1
|
||||
.Dt NVF 1
|
||||
.Os nvf
|
||||
.\" disable hyphenation
|
||||
.nh
|
||||
|
@ -7,27 +7,46 @@
|
|||
.ad l
|
||||
.\" enable line breaks after slashes
|
||||
.cflags 4 /
|
||||
|
||||
.Sh NAME
|
||||
.Nm nvf
|
||||
.Nd A highly modular, extensible and distro-agnostic Neovim configuration framework for Nix/NixOS.
|
||||
.
|
||||
.Nd A modular, extensible, and distro-agnostic Neovim configuration framework for Nix/NixOS.
|
||||
|
||||
.Sh DESCRIPTION
|
||||
.Nm 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.
|
||||
|
||||
.Sh COMMANDS
|
||||
The following commands are bundled with nvf to allow easier debugging of your configuration.
|
||||
|
||||
.Bl -tag -width Ds
|
||||
.It Nm nvf-print-config
|
||||
Outputs the full configuration of the current `nvf` setup. This command is useful for debugging
|
||||
or inspecting the applied configuration.
|
||||
.Pp
|
||||
.It Nm nvf-print-config-path
|
||||
Prints the file path to the configuration file currently in use. This command is helpful for locating
|
||||
the source configuration file for troubleshooting or easily sharing it via online paste utilities.
|
||||
.El
|
||||
|
||||
.Sh BUGS
|
||||
.Pp
|
||||
Please report any bugs that you might encounter on the
|
||||
\m[blue]\fBproject issue tracker\fR\m[]\&.
|
||||
Please report any bugs on the project issue tracker:
|
||||
.Lk https://github.com/notashelf/nvf/issues
|
||||
|
||||
.Sh SEE ALSO
|
||||
.Pp
|
||||
\fBnvf\fR(5)
|
||||
.Fn nvf 5
|
||||
|
||||
.Sh AUTHOR
|
||||
.Pp
|
||||
\fBnvf contributors\fR
|
||||
.Fn nvf contributors
|
||||
.RS 4
|
||||
Author.
|
||||
Primary contributors and maintainers of the project.
|
||||
.RE
|
||||
|
||||
.Sh COPYRIGHT
|
||||
.br
|
||||
Copyright \(co 2023\(en2024 nvf contributors
|
||||
.br
|
||||
.Pp
|
||||
Copyright (c) 2023–2025 nvf contributors.
|
||||
|
|
|
@ -31,6 +31,12 @@
|
|||
your Editorconfig configuration, or use an autocommand to set indentation
|
||||
values for buffers with the Nix filetype.
|
||||
|
||||
- Add [](#opt-vim.lsp.lightbulb.autocmd.enable) for manually managing the
|
||||
previously managed lightbulb autocommand.
|
||||
- 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.
|
||||
Pick only one.
|
||||
|
||||
[amadaluzia](https://github.com/amadaluzia):
|
||||
|
||||
[haskell-tools.nvim]: https://github.com/MrcJkb/haskell-tools.nvim
|
||||
|
@ -105,6 +111,7 @@
|
|||
- Add [fzf-lua](https://github.com/ibhagwan/fzf-lua) in `vim.fzf-lua`
|
||||
- Add [rainbow-delimiters](https://github.com/HiPhish/rainbow-delimiters.nvim)
|
||||
in `vim.visuals.rainbow-delimiters`
|
||||
- Add options to define highlights under [](#opt-vim.highlight)
|
||||
|
||||
[kaktu5](https://github.com/kaktu5):
|
||||
|
||||
|
@ -126,7 +133,10 @@
|
|||
|
||||
[QuiNzX](https://github.com/QuiNzX):
|
||||
|
||||
[ruff]: (https://github.com/astral-sh/ruff)
|
||||
|
||||
- Add ruff as lsp alongside other lsp servers in a list as an option. Under
|
||||
`vim.languages.python.lsp.server`.
|
||||
|
||||
[ARCIII](https://github.com/ArmandoCIII):
|
||||
|
||||
- Add `vim.languages.zig.dap` support through pkgs.lldb dap adapter. Code
|
||||
Inspiration from `vim.languages.clang.dap` implementation.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue