From 227f80ac9d3bd1d66f15317392e04349019a8816 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 27 Apr 2024 15:44:37 +0300 Subject: [PATCH 1/3] docs: rename all instances of `neovim-flake` to `nvf` --- docs/default.nix | 26 ++-- docs/html-open-tool.nix | 2 +- docs/man/footer.5 | 2 +- docs/man/header.5 | 6 +- docs/man/{neovim-flake.1 => nvf.1} | 14 +- docs/manual.nix | 8 +- docs/manual/configuring.md | 2 +- docs/manual/configuring/custom-package.md | 8 +- docs/manual/configuring/custom-plugins.md | 18 +-- .../configuring/custom-plugins/configuring.md | 21 +-- .../configuring/custom-plugins/new-method.md | 6 +- .../configuring/custom-plugins/old-method.md | 18 ++- docs/manual/configuring/dags.md | 18 ++- docs/manual/configuring/languages.md | 6 +- docs/manual/configuring/languages/lsp.md | 12 +- docs/manual/default-configs.md | 3 +- docs/manual/default-configs/maximal.md | 12 +- docs/manual/default-configs/nix.md | 6 +- docs/manual/default-configs/tidal.md | 12 -- docs/manual/hacking.md | 12 +- docs/manual/hacking/additional-plugins.md | 4 +- docs/manual/hacking/getting-started.md | 20 ++- docs/manual/hacking/guidelines.md | 143 ++++++++++-------- docs/manual/hacking/keybinds.md | 72 +++++---- docs/manual/hacking/testing.md | 20 ++- docs/manual/installation.md | 4 +- .../installation/custom-configuration.md | 4 +- .../installation/modules/home-manager.md | 46 +++--- docs/manual/installation/modules/nixos.md | 81 +++++++++- .../installation/standalone/home-manager.md | 43 ++++-- docs/manual/installation/standalone/nixos.md | 32 ++-- docs/manual/manual.md | 2 +- docs/manual/options.md | 4 +- docs/manual/preface.md | 6 +- docs/manual/try-it-out.md | 12 +- docs/release-notes/release-notes.md | 3 +- 36 files changed, 430 insertions(+), 278 deletions(-) rename docs/man/{neovim-flake.1 => nvf.1} (59%) delete mode 100644 docs/manual/default-configs/tidal.md diff --git a/docs/default.nix b/docs/default.nix index 60148d7..5d521d6 100644 --- a/docs/default.nix +++ b/docs/default.nix @@ -86,12 +86,12 @@ transformOptions = opt: recursiveUpdate opt { - # Clean up declaration sites to not refer to the neovim-flakee + # Clean up declaration sites to not refer to the nvf # source tree. declarations = map (decl: if hasPrefix nvimPath (toString decl) then - githubDeclaration "notashelf" "neovim-flake" + githubDeclaration "notashelf" "nvf" (removePrefix "/" (removePrefix nvimPath (toString decl))) else if decl == "lib/modules.nix" then @@ -105,7 +105,7 @@ // builtins.removeAttrs args ["modules" "includeModuleSystemOptions"]); nvimModuleDocs = buildOptionsDocs { - variablelistId = "neovim-flake-options"; + variablelistId = "nvf-options"; modules = import ../modules/modules.nix { @@ -117,7 +117,7 @@ # Generate the `man home-configuration.nix` package nvf-configuration-manual = - pkgs.runCommand "neovim-flake-reference-manpage" { + pkgs.runCommand "nvf-reference-manpage" { nativeBuildInputs = [pkgs.buildPackages.installShellFiles pkgs.nixos-render-docs]; allowedReferences = ["out"]; } '' @@ -130,21 +130,21 @@ --header ${./man/header.5} \ --footer ${./man/footer.5} \ ${nvimModuleDocs.optionsJSON}/share/doc/nixos/options.json \ - $out/share/man/man5/neovim-flake.5 + $out/share/man/man5/nvf.5 - cp ${./man/neovim-flake.1} $out/share/man/man1/neovim-flake.1 + cp ${./man/nvf.1} $out/share/man/man1/nvf.1 ''; # Generate the HTML manual pages - neovim-flake-manual = pkgs.callPackage ./manual.nix { + nvf-manual = pkgs.callPackage ./manual.nix { inherit revision manpageUrls; - outputPath = "share/doc/neovim-flake"; + outputPath = "share/doc/nvf"; options = { - neovim-flake = nvimModuleDocs.optionsJSON; + nvf = nvimModuleDocs.optionsJSON; }; }; - html = neovim-flake-manual; + html = nvf-manual; htmlOpenTool = pkgs.callPackage ./html-open-tool.nix {} {inherit html;}; in { inherit (inputs) nmd; @@ -154,16 +154,16 @@ in { # `nixosOptionsDoc` is more customizable. json = pkgs.runCommand "options.json" { - meta.description = "List of neovim-flake options in JSON format"; + meta.description = "List of nvf options in JSON format"; } '' mkdir -p $out/{share/doc,nix-support} - cp -a ${nvimModuleDocs.optionsJSON}/share/doc/nixos $out/share/doc/neovim-flake + cp -a ${nvimModuleDocs.optionsJSON}/share/doc/nixos $out/share/doc/nvf substitute \ ${nvimModuleDocs.optionsJSON}/nix-support/hydra-build-products \ $out/nix-support/hydra-build-products \ --replace \ '${nvimModuleDocs.optionsJSON}/share/doc/nixos' \ - "$out/share/doc/neovim-flake" + "$out/share/doc/nvf" ''; }; diff --git a/docs/html-open-tool.nix b/docs/html-open-tool.nix index 0eeb9fe..756feba 100644 --- a/docs/html-open-tool.nix +++ b/docs/html-open-tool.nix @@ -4,7 +4,7 @@ symlinkJoin, }: { html, - pathName ? "neovim-flake", + pathName ? "nvf", projectName ? pathName, name ? "${pathName}-help", }: let diff --git a/docs/man/footer.5 b/docs/man/footer.5 index f2c7cfd..f73fbeb 100644 --- a/docs/man/footer.5 +++ b/docs/man/footer.5 @@ -1,3 +1,3 @@ .SH "AUTHORS" .PP -neovim-flake contributors +nvf contributors diff --git a/docs/man/header.5 b/docs/man/header.5 index e512eb0..a28fc3d 100644 --- a/docs/man/header.5 +++ b/docs/man/header.5 @@ -1,4 +1,4 @@ -.TH "neovim-flake" "5" "01/01/1980" "neovim-flake" +.TH "nvf" "5" "01/01/1980" "nvf" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -6,8 +6,8 @@ .\" enable line breaks after slashes .cflags 4 / .SH "NAME" -neovim-flake configuration specification +nvf configuration specification .SH "OPTIONS" .PP -You can use the following options to configure neovim-flake: +You can use the following options to configure nvf: .PP diff --git a/docs/man/neovim-flake.1 b/docs/man/nvf.1 similarity index 59% rename from docs/man/neovim-flake.1 rename to docs/man/nvf.1 index 7efc6cc..0f1e36d 100644 --- a/docs/man/neovim-flake.1 +++ b/docs/man/nvf.1 @@ -1,6 +1,6 @@ .Dd January 1, 1980 -.Dt neovim-flake 1 -.Os neovim-flake +.Dt nvf 1 +.Os nvf .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -8,8 +8,8 @@ .\" enable line breaks after slashes .cflags 4 / .Sh NAME -.Nm neovim-flake -.Nd A highly modular, extensible and distro-agnostic Neovim distribution for Nix/NixOS. +.Nm nvf +.Nd A highly modular, extensible and distro-agnostic Neovim configuration framework for Nix/NixOS. . .Sh BUGS .Pp @@ -18,16 +18,16 @@ Please report any bugs that you might encounter on the .Sh SEE ALSO .Pp -\fBneovim-flake\fR(5) +\fBnvf\fR(5) .Sh AUTHOR .Pp -\fBneovim-flake contributors\fR +\fBnvf contributors\fR .RS 4 Author. .RE .Sh COPYRIGHT .br -Copyright \(co 2023\(en2024 neovim-flake contributors +Copyright \(co 2023\(en2024 nvf contributors .br diff --git a/docs/manual.nix b/docs/manual.nix index c944b3f..14e8ae2 100644 --- a/docs/manual.nix +++ b/docs/manual.nix @@ -8,13 +8,13 @@ manpageUrls, revision, options, - outputPath ? "share/doc/neovim-flake", + outputPath ? "share/doc/nvf", }: stdenvNoCC.mkDerivation { - name = "neovim-flake-manual"; + name = "nvf-manual"; src = builtins.path { path = lib.sourceFilesBySuffices ./manual [".md"]; - name = "neovim-flake-manual"; + name = "nvf-manual"; }; nativeBuildInputs = [nixos-render-docs]; @@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation { substituteInPlace ./options.md \ --subst-var-by \ OPTIONS_JSON \ - ${options.neovim-flake}/share/doc/nixos/options.json + ${options.nvf}/share/doc/nixos/options.json substituteInPlace ./manual.md \ --subst-var-by \ diff --git a/docs/manual/configuring.md b/docs/manual/configuring.md index 555b2cf..8f5e240 100644 --- a/docs/manual/configuring.md +++ b/docs/manual/configuring.md @@ -1,4 +1,4 @@ -# Configuring neovim-flake {#ch-configuring} +# Configuring nvf {#ch-configuring} ```{=include=} chapters configuring/custom-package.md diff --git a/docs/manual/configuring/custom-package.md b/docs/manual/configuring/custom-package.md index ee93c76..51d996b 100644 --- a/docs/manual/configuring/custom-package.md +++ b/docs/manual/configuring/custom-package.md @@ -1,6 +1,7 @@ # 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 `vim.package` option. +As of v0.5, you may now specify the Neovim package that will be wrapped with +your configuration. This is done with the `vim.package` option. ```nix {inputs, pkgs, ...}: { @@ -9,8 +10,9 @@ As of v0.5, you may now specify the neovim package that will be wrapped with you } ``` -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. +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, ...}: { diff --git a/docs/manual/configuring/custom-plugins.md b/docs/manual/configuring/custom-plugins.md index 76428b0..3bcd324 100644 --- a/docs/manual/configuring/custom-plugins.md +++ b/docs/manual/configuring/custom-plugins.md @@ -1,21 +1,21 @@ # Custom Plugins {#ch-custom-plugins} -Neovim-flake, by default, exposes a wide variety of plugins as module options -for your convience and bundles necessary dependencies into neovim-flake's -runtime. In case a plugin is not available in neovim-flake, you may consider -making a pull request to neovim-flake to include it as a module or you may add -it to your configuration locally. +**nvf**, by default, exposes a wide variety of plugins as module options +for your convience and bundles necessary dependencies into **nvf**'s runtime. +In case a plugin is not available in **nvf**, you may consider making a pull +request to **nvf** to include it as a module or you may add it to your +configuration locally. ## Adding Plugins {#ch-adding-plugins} -There are multiple ways of adding custom plugins to your neovim-flake -configuration. +There are multiple ways of adding custom plugins to your **nvf** configuration. You can use custom plugins, before they are implemented in the flake. To add a -plugin, you need to add it to your config's `vim.startPlugins` array. +plugin to the runtime, you need to add it to the `vim.startPlugins` list in +your configuration. Adding a plugin to `startPlugins` will not allow you to configure the plugin -that you have addeed, but neovim-flake provides multiple way of configuring any +that you have adeed, but **nvf** provides multiple way of configuring any custom plugins that you might have added to your configuration. ```{=include=} sections diff --git a/docs/manual/configuring/custom-plugins/configuring.md b/docs/manual/configuring/custom-plugins/configuring.md index ec9bdc4..da6274d 100644 --- a/docs/manual/configuring/custom-plugins/configuring.md +++ b/docs/manual/configuring/custom-plugins/configuring.md @@ -1,8 +1,10 @@ # Configuring {#sec-configuring-plugins} -Just making the plugin to your neovim configuration available might not always be enough. -In that case, you can write custom vimscript or lua config, using `config.vim.configRC` or `config.vim.luaConfigRC` -respectively. These options are attribute sets, and you need to give the configuration you're adding some name, like this: +Just making the plugin to your Neovim configuration available might not always +be enough. In that case, you can write custom vimscript or lua config, using +either `config.vim.configRC` or `config.vim.luaConfigRC` respectively. Both of +these options are attribute sets, and you need to give the configuration you're +adding some name, like this: ```nix { @@ -13,11 +15,12 @@ respectively. These options are attribute sets, and you need to give the configu ``` :::{.note} -If your configuration needs to be put in a specific place in the config, you can use functions from -`inputs.neovim-flake.lib.nvim.dag` to order it. -Refer to https://github.com/nix-community/home-manager/blob/master/modules/lib/dag.nix to find out more about -the DAG system. +If your configuration needs to be put in a specific place in the config, you +can use functions from `inputs.nvf.lib.nvim.dag` to order it. Refer to +https://github.com/nix-community/home-manager/blob/master/modules/lib/dag.nix +to find out more about the DAG system. ::: -Also, if you successfully made your plugin work, please make a PR to add it to the flake, or open an issue -with your findings so that we can make it available for everyone easily. +If you successfully made your plugin work, please feel free to create a PR to +add it to **nvf** or open an issue with your findings so that we can make it +available for everyone easily. diff --git a/docs/manual/configuring/custom-plugins/new-method.md b/docs/manual/configuring/custom-plugins/new-method.md index 3b9b3b3..200ba5e 100644 --- a/docs/manual/configuring/custom-plugins/new-method.md +++ b/docs/manual/configuring/custom-plugins/new-method.md @@ -1,8 +1,8 @@ # New Method {#sec-new-method} -As of version **0.5**, we have a more extensive API for configuring plugins, under `vim.extraPlugins`. - -Instead of using DAGs exposed by the library, you may use the extra plugin module as follows: +As of version **0.5**, we have a more extensive API for configuring plugins, +under `vim.extraPlugins`. Instead of using DAGs exposed by the library, you may +use the extra plugin module as follows: ```nix { diff --git a/docs/manual/configuring/custom-plugins/old-method.md b/docs/manual/configuring/custom-plugins/old-method.md index e3a1217..3b9d090 100644 --- a/docs/manual/configuring/custom-plugins/old-method.md +++ b/docs/manual/configuring/custom-plugins/old-method.md @@ -1,12 +1,14 @@ # Old Method {#sec-old-method} -Prior to version 0.5, the method of adding new plugins was adding the plugin package to `vim.startPlugins` and add -its configuration as a DAG under `vim.configRC` or `vim.luaConfigRC`. Users who have not yet updated to 0.5, or prefer -a more hands-on approach may use the old method where the load order of the plugins is determined by DAGs. +Prior to version 0.5, the method of adding new plugins was adding the plugin +package to `vim.startPlugins` and add its configuration as a DAG under one of +`vim.configRC` or `vim.luaConfigRC`. Users who have not yet updated to 0.5, or +prefer a more hands-on approach may use the old method where the load order of +the plugins is determined by DAGs. ## Adding plugins {#sec-adding-plugins} -To add a plugin to neovim-flake's runtime, you may add it +To add a plugin to **nvf**'s runtime, you may add it ```nix {pkgs, ...}: { @@ -16,13 +18,13 @@ To add a plugin to neovim-flake's runtime, you may add it } ``` -And to configure the added plugin, you can use the `luaConfigRC` option to provide configuration -as a DAG using the neovim-flake extended library. +And to configure the added plugin, you can use the `luaConfigRC` option to +provide configuration as a DAG using the **nvf** extended library. ```nix {inputs, ...}: let - # assuming you have an input called neovim-flake pointing at the neovim-flake repo - inherit (inputs.neovim-flake.lib.nvim.dag) entryAnywhere; + # assuming you have an input called nvf pointing at the nvf repository + inherit (inputs.nvf.lib.nvim.dag) entryAnywhere; in { vim.luaConfigRC.aerial-nvim= entryAnywhere '' require('aerial').setup { diff --git a/docs/manual/configuring/dags.md b/docs/manual/configuring/dags.md index e4d4111..77817cb 100644 --- a/docs/manual/configuring/dags.md +++ b/docs/manual/configuring/dags.md @@ -1,13 +1,17 @@ # Using DAGs {#ch-using-dags} -We conform to the NixOS options types for the most part, however, a noteworthy addition -for certain options is the [**DAG (Directed acyclic graph)**](https://en.wikipedia.org/wiki/Directed_acyclic_graph) -type which is borrowed from home-manager's extended library. This type is most used for -topologically sorting strings. The DAG type allows the attribute set entries to express dependency -relations among themselves. This can, for example, be used to control the order of configuration -sections in your `configRC` or `luaConfigRC`. +We conform to the NixOS options types for the most part, however, a noteworthy +addition for certain options is the [**DAG +(Directed acyclic graph)**](https://en.wikipedia.org/wiki/Directed_acyclic_graph) +type which is borrowed from home-manager's extended library. This type is most +used for topologically sorting strings. The DAG type allows the attribute set +entries to express dependency relations among themselves. This can, for +example, be used to control the order of configuration sections in your +`configRC` or `luaConfigRC`. -The below section, mostly taken from the [home-manager manual](https://raw.githubusercontent.com/nix-community/home-manager/master/docs/manual/writing-modules/types.md) explains the overal usage logic of the DAG typee +The below section, mostly taken from the [home-manager +manual](https://raw.githubusercontent.com/nix-community/home-manager/master/docs/manual/writing-modules/types.md) +explains in more detail the overall usage logic of the DAG type. ## entryAnywhere {#sec-types-dag-entryAnywhere} diff --git a/docs/manual/configuring/languages.md b/docs/manual/configuring/languages.md index 98a5244..0e54342 100644 --- a/docs/manual/configuring/languages.md +++ b/docs/manual/configuring/languages.md @@ -1,7 +1,9 @@ # Language Support {#ch-languages} -Language specific support means there is a combination of language specific plugins, `treesitter` support, `nvim-lspconfig` language servers, and `null-ls` -integration. This gets you capabilities ranging from autocompletion to formatting to diagnostics. The following languages have sections under the `vim.languages` +Language specific support means there is a combination of language specific +plugins, `treesitter` support, `nvim-lspconfig` language servers, and `null-ls` +integration. This gets you capabilities ranging from autocompletion to formatting +to diagnostics. The following languages have sections under the `vim.languages` attribute. - Rust: [vim.languages.rust.enable](#opt-vim.languages.rust.enable) diff --git a/docs/manual/configuring/languages/lsp.md b/docs/manual/configuring/languages/lsp.md index 8d72f11..b7a9d07 100644 --- a/docs/manual/configuring/languages/lsp.md +++ b/docs/manual/configuring/languages/lsp.md @@ -1,15 +1,17 @@ # LSP Custom Packages/Command {#sec-languages-custom-lsp-packages} -In any of the `opt.languages..lsp.package` options you can provide your own LSP package, or provide -the command to launch the language server, as a list of strings. - -You can use this to skip automatic installation of a language server, and instead -use the one found in your `$PATH` during runtime, for example: +In any of the `opt.languages..lsp.package` options you can provide +your own LSP package, or provide the command to launch the language server, as +a list of strings. You can use this to skip automatic installation of a language +server, and instead use the one found in your `$PATH` during runtime, for +example: ```nix vim.languages.java = { lsp = { enable = true; + # this expects jdt-language-server to be in your PATH + # or in `vim.extraPackages` package = ["jdt-language-server" "-data" "~/.cache/jdtls/workspace"]; }; } diff --git a/docs/manual/default-configs.md b/docs/manual/default-configs.md index 551925d..60f3d69 100644 --- a/docs/manual/default-configs.md +++ b/docs/manual/default-configs.md @@ -1,10 +1,9 @@ # Default Configs {#ch-default-configs} -While you can configure neovim-flake yourself using the builder, you can also use the pre-built configs that are available. +While you can configure **nvf** yourself using the builder, you can also use the pre-built configs that are available. Here are a few default configurations you can use. ```{=include=} chapters default-configs/maximal.md default-configs/nix.md -default-configs/tidal.md ``` diff --git a/docs/manual/default-configs/maximal.md b/docs/manual/default-configs/maximal.md index 78b8e25..49f9569 100644 --- a/docs/manual/default-configs/maximal.md +++ b/docs/manual/default-configs/maximal.md @@ -1,13 +1,13 @@ # Maximal {#sec-default-maximal} ```bash -$ nix shell github:notashelf/neovim-flake#maximal test.nix +$ nix shell github:notashelf/nvf#maximal test.nix ``` -It is the same fully configured neovim as with the [Nix](#sec-default-nix) config, but with every supported language enabled. - -:::{.note} - -Running the maximal config will download _a lot_ of packages as it is downloading language servers, formatters, and more. +It is the same fully configured Neovim as with the [Nix](#sec-default-nix) +configuration, but with every supported language enabled. +::: {.note} +Running the maximal config will download _a lot_ of packages as it is +downloading language servers, formatters, and more. ::: diff --git a/docs/manual/default-configs/nix.md b/docs/manual/default-configs/nix.md index 6afe386..5210ef3 100644 --- a/docs/manual/default-configs/nix.md +++ b/docs/manual/default-configs/nix.md @@ -1,7 +1,9 @@ # Nix {#sec-default-nix} ```bash -$ nix run github:notashelf/neovim-flake#nix test.nix +$ nix run github:notashelf/nvf#nix test.nix ``` -Enables all the of neovim plugins, with language support for specifically Nix. This lets you see what a fully configured neovim setup looks like without downloading a whole bunch of language servers and associated tools. +Enables all the of Neovim plugins, with language support for specifically Nix. +This lets you see what a fully configured neovim setup looks like without +downloading a whole bunch of language servers and associated tools. diff --git a/docs/manual/default-configs/tidal.md b/docs/manual/default-configs/tidal.md deleted file mode 100644 index f931fd3..0000000 --- a/docs/manual/default-configs/tidal.md +++ /dev/null @@ -1,12 +0,0 @@ -# Tidal Cycles {#sec-default-tidal} - -```bash -$ nix run github:notashelf/neovim-flake#tidal file.tidal -``` - -Utilizing [vim-tidal](https://github.com/tidalcycles/vim-tidal) and mitchmindtree's fantastic -[tidalcycles.nix](https://github.com/mitchmindtree/tidalcycles.nix) start playing with tidal cycles in a single command. - -In your tidal file, type a cycle e.g. `d1 $ s "drum"` and then press _ctrl+enter_. Super collider with superdirt, and a -modified GHCI with tidal will start up and begin playing. Note, you need jack enabled on your system. If you are using -pipewire, its as easy as setting `services.pipewire.jack.enable = true` in your configuration. diff --git a/docs/manual/hacking.md b/docs/manual/hacking.md index b9a223c..394022b 100644 --- a/docs/manual/hacking.md +++ b/docs/manual/hacking.md @@ -1,14 +1,14 @@ -# Hacking neovim-flake {#ch-hacking} +# Hacking nvf {#ch-hacking} -neovim-flake is designed for developers as much as it is for the end user. I would like any potential contributor +**nvf** is designed for developers as much as it is for the end user. I would like any potential contributor to be able to propagate their desired changes into the repository without the extra effort. As such, below are guides (and guidelines) to streamline the contribution process and ensure that your valuable input seamlessly integrates -into neovim-flake's development without leaving question marks in your head. +into **nvf**'s development without leaving question marks in your head. -This section is mainly directed towards those who wish to contribute code into neovim-flake. If you wish to instead +This section is mainly directed towards those who wish to contribute code into **nvf**. If you wish to instead report a bug or discuss a potential feature implementation, first look among the -already [open issues](https://github.com/notashelf/neovim-flake/issues) and if no matching issue exists you may open -a [new issue](https://github.com/notashelf/neovim-flake/issues/new) and describe your problem/request. While creating an +already [open issues](https://github.com/notashelf/nvf/issues) and if no matching issue exists you may open +a [new issue](https://github.com/notashelf/nvf/issues/new) and describe your problem/request. While creating an issue, please try to include as much information as you can, ideally also include relevant context in which an issue occurs or a feature should be implemented. diff --git a/docs/manual/hacking/additional-plugins.md b/docs/manual/hacking/additional-plugins.md index 57d9403..7c80215 100644 --- a/docs/manual/hacking/additional-plugins.md +++ b/docs/manual/hacking/additional-plugins.md @@ -1,6 +1,6 @@ # Adding Plugins {#sec-additional-plugins} -To add a new neovim plugin, first add the source url in the inputs section of `flake.nix` +To add a new Neovim plugin, first add the source url in the inputs section of `flake.nix` with the prefix `plugin-` ```nix @@ -17,7 +17,7 @@ with the prefix `plugin-` } ``` -The addition of the `plugin-` prefix will allow neovim-flake to autodiscover the +The addition of the `plugin-` prefix will allow **nvf** to autodiscover the input from the flake inputs automatically, allowing you to refer to it in areas that require a very specific plugin type as defined in `lib/types/plugins.nix` diff --git a/docs/manual/hacking/getting-started.md b/docs/manual/hacking/getting-started.md index 8d16681..72927dc 100644 --- a/docs/manual/hacking/getting-started.md +++ b/docs/manual/hacking/getting-started.md @@ -1,10 +1,16 @@ # Getting Started {#sec-contrib-getting-started} -You naturally would like to start by forking the repository. If you are new to git, 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 neovim-flake -you should create a branch starting at the most recent `main` branch. -Give your branch a reasonably descriptive name, suffixed by its type - i.e `feature/debugger` or `fix/pesky-bug`. +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 msot 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 [Guidelines](#sec-guidelines). Once you are confident everything is in order, push the branch to GitHub and -[create a pull request](https://help.github.com/articles/creating-a-pull-request), following the template that you will be prompted to fill. +Implement your changes and commit them to the newly created branch and when you +are happy with the result, and positive that it fullfills 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. diff --git a/docs/manual/hacking/guidelines.md b/docs/manual/hacking/guidelines.md index 16dbd6f..f90c02f 100644 --- a/docs/manual/hacking/guidelines.md +++ b/docs/manual/hacking/guidelines.md @@ -1,55 +1,65 @@ # 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 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/neovim-flake/discussions) ideally (but not necessarily) -before you start developing. +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} -Most, if not all, changes warrant changes to the documentation. Module options should be documented with -[Nixpkgs-flavoured Markdown](https://nixos.org/manual/nixpkgs/unstable/#sec-contributing-markup), albeit with exceptions. - -:::{.note} - -As of v0.5, neovim-flake is itself documented using full markdown in both module options and the manual. With -v0.6, this manual has also been converted to markdown in full. +Most, if not all, changes warrant changes to the documentation. Module options +should be documented with [Nixpkgs-flavoured Markdown](https://nixos.org/manual/nixpkgs/unstable/#sec-contributing-markup), +albeit with exceptions. +::: {.note} +As of **v0.5**, **vf** is itself documented using full markdown in both module +options and the manual. With **v0.6**, this manual has also been converted to +markdown in full. ::: -The HTML version of this manual containing both the module option descriptions and the documentation of neovim-flake -(such as this page) can be generated and opened by typing the following in a shell within a clone of the -neovim-flake Git repository: +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/neovim-flake/index.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. +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). +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 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 +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} @@ -57,15 +67,18 @@ the first line. A commit message ideally, but not necessarily, follow the given {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. +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 commit message +in home-manager contains the following commit message. ``` starship: allow running in Emacs if vterm is used @@ -74,38 +87,43 @@ The vterm buffer is backed by libvterm and can handle Starship prompts without issues. ``` -Similarly, if you are contributing to neovim-flake, you would include the scope of the commit followed by -the description +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, and adds appropriate formatters and TS grammers +Adds a language module for Ruby, adds appropriate formatters and Treesitter grammers ``` -Long description can be ommitted 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, e.g. the reasoning behind it, for your commit. +Long description can be ommitted 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. +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`. +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** -Keep lines at a reasonable width, ideally 80 characters or less. This also applies to string literals and module -descriptions and documentation. +### Treewide -**Nix** -neovim-flake is formatted by the [alejandra](https://github.com/kamadorueda/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. +Keep lines at a reasonable width, ideally 80 characters or less. This also applies +to string literals and module descriptions and documentation. -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. +### Nix + +**nvf** is formatted by the [alejandra](https://github.com/kamadorueda/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: @@ -128,8 +146,8 @@ module = { } ``` -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. +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 = { @@ -139,13 +157,12 @@ module = { } ``` -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. +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 @@ -157,10 +174,12 @@ acceptableList = [ listToBeAvoided = [item1 item2 /* comment */ item3 item4]; # this is ok -acceptableList = [item1]; +acceptableList = [item1 item2]; -# this is not ok -listToBeAvoided = [ +# this is also ok if the list is expected to contain more elements +acceptableList= [ item1 + item2 + # more items if needed... ]; ``` diff --git a/docs/manual/hacking/keybinds.md b/docs/manual/hacking/keybinds.md index 6114274..f4a5149 100644 --- a/docs/manual/hacking/keybinds.md +++ b/docs/manual/hacking/keybinds.md @@ -1,8 +1,9 @@ # 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/neovim-flake/tree/main/lib). The following section contains -a general overview to how you may utilize said functions. +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} @@ -36,44 +37,58 @@ An example, simple keybinding, can look like this: ``` There are many settings available in the options. Please refer to the -[documentation](https://notashelf.github.io/neovim-flake/options.html#opt-vim.maps.command._name_.action) +[documentation](https://notashelf.github.io/nvf/options.html#opt-vim.maps.command._name_.action) to see a list of them. -`neovim-flake` provides a list of helper commands, so that you don't have to write the mapping attribute sets every -time: +**nvf** provides a list of helper commands, so that you don't have to write the +mapping attribute sets every time: -- `mkBinding = key: action: desc:` - makes a basic binding, with `silent` set to true. -- `mkExprBinding = key: action: desc:` - makes an expression binding, with `lua`, `silent`, and `expr` set to true. -- `mkLuaBinding = key: action: desc:` - makes an expression binding, with `lua`, and `silent` set to true. +- `mkBinding = key: action: desc:` - makes a basic binding, with `silent` set + to true. +- `mkExprBinding = key: action: desc:` - makes an expression binding, with + `lua`, `silent`, and `expr` set to true. +- `mkLuaBinding = key: action: desc:` - makes an expression binding, with + `lua`, and `silent` set to true. -Note that the Lua in these bindings is actual Lua, not pasted into a `:lua` command. -Therefore, you either pass in a function like `require('someplugin').some_function`, without actually calling it, -or you define your own function, like `function() require('someplugin').some_function() end`. +Do note that the Lua in these bindings is actual Lua, and not pasted into a +`:lua` command. Therefore, you should either pass in a function like +`require('someplugin').some_function`, without actually calling it, or you +should define your own functions, for example -Additionally, to not have to repeat the descriptions, there's another utility function with its own set of functions: +```lua +function() + require('someplugin').some_function() +end +``` -Utility function that takes two attrsets: +Additionally, to not have to repeat the descriptions, there's another utility +function with its own set of functions: Utility function that takes two +attribute sets: - `{ someKey = "some_value" }` - `{ someKey = { description = "Some Description"; }; }` and merges them into `{ someKey = { value = "some_value"; description = "Some Description"; }; }` -``` +```nix addDescriptionsToMappings = actualMappings: mappingDefinitions: ``` -This function can be used in combination with the same `mkBinding` functions as above, except they only take two -arguments - `binding` and `action`, and have different names: +This function can be used in combination with the same `mkBinding` functions as +above, except they only take two arguments - `binding` and `action`, and have +different names: -- `mkSetBinding = binding: action:` - makes a basic binding, with `silent` set to true. -- `mkSetExprBinding = binding: action:` - makes an expression binding, with `lua`, `silent`, and `expr` set to true. -- `mkSetLuaBinding = binding: action:` - makes an expression binding, with `lua`, and `silent` set to true. +- `mkSetBinding = binding: action:` - makes a basic binding, with `silent` + set to true. +- `mkSetExprBinding = binding: action:` - makes an expression binding, with + `lua`, `silent`, and `expr` set to true. +- `mkSetLuaBinding = binding: action:` - makes an expression binding, with + `lua`, and `silent` set to true. -You can read the source code of some modules to see them in action, but their usage should look something like this: +You can read the source code of some modules to see them in action, but their +usage should look something like this: ```nix - # plugindefinition.nix {lib, ...}: with lib; { options.vim.plugin = { @@ -96,15 +111,13 @@ You can read the source code of some modules to see them in action, but their us }; } - ``` ```nix - # config.nix { - pkgs, config, + pkgs, lib, ... }: @@ -158,9 +171,8 @@ in { ``` -:::{.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. - +::: {.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. ::: diff --git a/docs/manual/hacking/testing.md b/docs/manual/hacking/testing.md index 2568ceb..10830b6 100644 --- a/docs/manual/hacking/testing.md +++ b/docs/manual/hacking/testing.md @@ -1,11 +1,15 @@ # Testing Changes {#sec-testing-changes} -Once you have made your changes, you will need to test them throughly. 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 posssible. +Once you have made your changes, you will need to test them throughly. 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 posssible. -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. +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. diff --git a/docs/manual/installation.md b/docs/manual/installation.md index e24e42e..afe60d1 100644 --- a/docs/manual/installation.md +++ b/docs/manual/installation.md @@ -1,6 +1,6 @@ -# Installing neovim-flake {#ch-installation} +# Installing nvf {#ch-installation} -There are multiple ways of installing neovim-flake on your system. You may either choose +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](#ch-module-installation) diff --git a/docs/manual/installation/custom-configuration.md b/docs/manual/installation/custom-configuration.md index e88cd08..408b039 100644 --- a/docs/manual/installation/custom-configuration.md +++ b/docs/manual/installation/custom-configuration.md @@ -1,7 +1,7 @@ # Standalone Installation {#ch-standalone-installation} -It is possible to install neovim-flake without depending on NixOS or home-manager as the parent -module system, using the `neovimConfiguration` function exposed by neovim-flake extended library. +It is possible to install **nvf** without depending on NixOS or home-manager as the parent +module system, using the `neovimConfiguration` function exposed by **nvf** extended library. It takes in the configuration as a module, and returns an attribute set as a result. ```nix diff --git a/docs/manual/installation/modules/home-manager.md b/docs/manual/installation/modules/home-manager.md index e408bd5..0b80a10 100644 --- a/docs/manual/installation/modules/home-manager.md +++ b/docs/manual/installation/modules/home-manager.md @@ -1,7 +1,9 @@ -# Home Manager Module {#ch-hm-module} +# Home-Manager Module {#ch-hm-module} -The Home Manager module allows us to customize the different `vim` options from inside the home-manager configuration -and it is the preferred way of configuring neovim-flake, both on NixOS and non-NixOS systems. +The home-manager module allows us to customize the different `vim` options from +inside the home-manager configuration without having to call for the wrapper +yourself. It is the recommended way to use **nvf** alongside the NixOS module +depending on your needs. To use it, we first add the input flake. @@ -9,8 +11,8 @@ To use it, we first add the input flake. { inputs = { obsidian-nvim.url = "github:epwalsh/obsidian.nvim"; - neovim-flake = { - url = "github:notashelf/neovim-flake"; + nvf = { + url = "github:notashelf/nvf"; # you can override input nixpkgs inputs.nixpkgs.follows = "nixpkgs"; # you can also override individual plugins @@ -25,41 +27,41 @@ Followed by importing the home-manager module somewhere in your configuration. ```nix { - # assuming neovim-flake is in your inputs and inputs is in the argset - imports = [ inputs.neovim-flake.homeManagerModules.default ]; + # assuming nvf is in your inputs and inputs is in the argset + # see example below + imports = [ inputs.nvf.homeManagerModules.default ]; } ``` -An example installation for neovim-flake under standalone home-manager -would look like this: +## Example Installation {#sec-example-installation} ```nix { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; home-manager.url = "github:nix-community/home-manager"; - neovim-flake.url = "github:notashelf/neovim-flake"; + nvf.url = "github:notashelf/nvf"; }; - outputs = { nixpkgs, home-manager, neovim-flake ... }: let + outputs = { nixpkgs, home-manager, nvf, ... }: let system = "x86_64-linux"; in { - # ↓ this is the home-manager output in the flake schema - homeConfigurations."yourUsername»" = home-manager.lib.homeManagerConfiguration { - pkgs = nixpkgs.legacyPackages.x86_64-linux; + # ↓ this is your home output in the flake schema, expected by home-manager + "your-username@your-hostname" = home-manager.lib.homeManagerConfiguration modules = [ - neovim-flake.homeManagerModules.default # <- this imports the home-manager module that provides the options - ./home.nix # your home-manager configuration, probably where you will want to add programs.neovim-flake options + nvf.homeManagerModules.default # <- this imports the home-manager module that provides the options + ./home.nix # <- your home entrypoint ]; }; }; } ``` -Once the module is imported, we will be able to define the following options (and much more) from inside the -home-manager configuration. +Once the module is properly imported by your host, you will be able to use the +`programs.nvf` module option anywhere in your configuration in order to +configure **nvf**. ```nix{ - programs.neovim-flake = { + programs.nvf = { enable = true; # your settings need to go into the settings attribute set # most settings are documented in the appendix @@ -74,6 +76,8 @@ home-manager configuration. } ``` -:::{.note} -You may find all avaliable options in the [appendix](https://notashelf.github.io/neovim-flake/options) +::: {.note} +**nvf** exposes a lot of options, most of which are not referenced in the +installation sections of the manual. You may find all avaliable options +in the [appendix](https://notashelf.github.io/nvf/options) ::: diff --git a/docs/manual/installation/modules/nixos.md b/docs/manual/installation/modules/nixos.md index ac61586..9be8a7f 100644 --- a/docs/manual/installation/modules/nixos.md +++ b/docs/manual/installation/modules/nixos.md @@ -1,3 +1,82 @@ # NixOS Module {#ch-nixos-module} -This artice is a stub. It will be written as the NixOS module is finalized. +The NixOS module allows us to customize the different `vim` options from inside +the NixOS configuration without having to call for the wrapper yourself. It is +the recommended way to use **nvf** alongside the home-manager module depending +on your needs. + +To use it, we first add the input flake. + +```nix +{ + inputs = { + obsidian-nvim.url = "github:epwalsh/obsidian.nvim"; + nvf = { + url = "github:notashelf/nvf"; + # you can override input nixpkgs + inputs.nixpkgs.follows = "nixpkgs"; + # you can also override individual plugins + # for example: + inputs.obsidian-nvim.follows = "obsidian-nvim"; # <- this will use the obsidian-nvim from your inputs + }; + }; +} +``` + +Followed by importing the NixOS module somewhere in your configuration. + +```nix +{ + # assuming nvf is in your inputs and inputs is in the argset + # see example below + imports = [ inputs.nvf.nixosModules.default ]; +} +``` + +## Example Installation {#sec-example-installation} + +```nix +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nvf.url = "github:notashelf/nvf"; + }; + + outputs = { nixpkgs, nvf, ... }: let + system = "x86_64-linux"; in { + # ↓ this is your host output in the flake schema + nixosConfigurations."yourUsername»" = nixpkgs.lib.nixosSystem { + modules = [ + nvf.nixosModules.default # <- this imports the NixOS module that provides the options + ./configuration.nix # <- your host entrypoint + ]; + }; + }; +} +``` + +Once the module is properly imported by your host, you will be able to use the +`programs.nvf` module option anywhere in your configuration in order to +configure **nvf**. + +```nix{ + programs.nvf = { + enable = true; + # your settings need to go into the settings attribute set + # most settings are documented in the appendix + settings = { + vim.viAlias = false; + vim.vimAlias = true; + vim.lsp = { + enable = true; + }; + }; + }; +} +``` + +::: {.note} +**nvf** exposes a lot of options, most of which are not referenced in the +installation sections of the manual. You may find all avaliable options +in the [appendix](https://notashelf.github.io/nvf/options) +::: diff --git a/docs/manual/installation/standalone/home-manager.md b/docs/manual/installation/standalone/home-manager.md index b9ecb30..db1ae63 100644 --- a/docs/manual/installation/standalone/home-manager.md +++ b/docs/manual/installation/standalone/home-manager.md @@ -1,35 +1,54 @@ -# Standalone Installation (home-manager) {#ch-standalone-home-manager} +# Standalone Installation on Home-Manager {#ch-standalone-hm} -The following is an example of a barebones vim configuration with the default theme enabled. +Your built Neoevim configuration can be exposed as a flake output to make it +easier to share across machines, repositories and so on. Or it can be added to +your system packages to make it available across your system. + +The following is an example installation of `nvf` as a standalone package with +the default theme enabled. You may use other options inside `config.vim` in +`configModule`, but this example will not cover that. ```nix { - inputs.neovim-flake = { - url = "github:notashelf/neovim-flake"; - inputs.nixpkgs.follows = "nixpkgs"; + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + home-manager.url = "github:nix-community/home-manager"; + nvf.url = "github:notashelf/nvf"; }; - outputs = {nixpkgs, neovim-flake, ...}: let + outputs = {nixpkgs, home-manager, nvf, ...}: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; configModule = { - # Add any custom options (and feel free to upstream them!) - # options = ... + # Add any custom options (and do feel free to upstream them!) + # options = { ... }; config.vim = { theme.enable = true; + # and more options as you see fit... }; }; - customNeovim = neovim-flake.lib.neovimConfiguration { + customNeovim = nvf.lib.neovimConfiguration { modules = [configModule]; inherit pkgs; }; in { - # this is an example nixosConfiguration using the built neovim package + # this will make the package available as a flake input + packages.${system}.my-neovim = customNeovim.neovim; + + # this is an example home-manager configuration + # using the built neovim package homeConfigurations = { - yourHostName = home-manager.lib.nixosSystem { - # TODO + "your-username@your-hostname" = home-manager.lib.homeManagerConfiguration { + # ... + modules = [ + ./home.nix + + # this will make wrapped neovim available in your system packages + {environment.systemPackages = [customNeovim.neovim];} + ]; + # ... }; }; }; diff --git a/docs/manual/installation/standalone/nixos.md b/docs/manual/installation/standalone/nixos.md index 4c8aab9..2e6343a 100644 --- a/docs/manual/installation/standalone/nixos.md +++ b/docs/manual/installation/standalone/nixos.md @@ -1,33 +1,41 @@ -# Standalone Installation (NixOS) {#ch-standalone-nixos} +# Standalone Installation on NixOS {#ch-standalone-nixos} -The following is an example of a barebones vim configuration with the default theme enabled. +Your built Neoevim configuration can be exposed as a flake output to make it +easier to share across machines, repositories and so on. Or it can be added to +your system packages to make it available across your system. + +The following is an example installation of `nvf` as a standalone package with +the default theme enabled. You may use other options inside `config.vim` in +`configModule`, but this example will not cover that. ```nix { - inputs.neovim-flake = { - url = "github:notashelf/neovim-flake"; - inputs.nixpkgs.follows = "nixpkgs"; + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + home-manager.url = "github:nix-community/home-manager"; + nvf.url = "github:notashelf/nvf"; }; - outputs = {nixpkgs, neovim-flake, ...}: let + outputs = {nixpkgs, nvf, ...}: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; configModule = { - # Add any custom options (and feel free to upstream them!) - # options = ... + # Add any custom options (and do feel free to upstream them!) + # options = { ... }; config.vim = { theme.enable = true; + # and more options as you see fit... }; }; - customNeovim = neovim-flake.lib.neovimConfiguration { + customNeovim = nvf.lib.neovimConfiguration { modules = [configModule]; inherit pkgs; }; in { # this will make the package available as a flake input - packages.${system}.neovim = customNeovim.neovim; + packages.${system}.my-neovim = customNeovim.neovim; # this is an example nixosConfiguration using the built neovim package nixosConfigurations = { @@ -45,7 +53,3 @@ The following is an example of a barebones vim configuration with the default th }; } ``` - -Your built neovim configuration can be exposed as a flake output, or be added to your system packages to make -it available across your system. You may also consider passing the flake output to home-manager to make it available -to a specific user. diff --git a/docs/manual/manual.md b/docs/manual/manual.md index 7aefc31..3d80b0c 100644 --- a/docs/manual/manual.md +++ b/docs/manual/manual.md @@ -1,4 +1,4 @@ -# neovim-flake-manual {#neovim-flake-manual} +# nvf manual {#nvf-manual} ## Version @NVF_VERSION@ diff --git a/docs/manual/options.md b/docs/manual/options.md index 179f615..748e318 100644 --- a/docs/manual/options.md +++ b/docs/manual/options.md @@ -1,11 +1,11 @@ # Neovim Flake Configuration Options {#ch-options} -Below are the options provided by neovim-flake provided in no particular order. +Below are the options provided by nvf provided in no particular order. They may include useful comments and warnings, or examples on how a module option is meant to be used. ```{=include=} options id-prefix: opt- -list-id: neovim-flake-options +list-id: nvf-options source: @OPTIONS_JSON@ ``` diff --git a/docs/manual/preface.md b/docs/manual/preface.md index ef9048f..26e3070 100644 --- a/docs/manual/preface.md +++ b/docs/manual/preface.md @@ -1,7 +1,7 @@ # Preface {#ch-preface} -If you noticed a bug caused by neovim-flake then please consider reporting it over -[the neovim-flake issue tracker](https://github.com/notashelf/neovim-flake/issues). +If you noticed a bug caused by **nvf** then please consider reporting it over +[the issue tracker](https://github.com/notashelf/nvf/issues). Bugfixes, feature additions and upstreamed changes from your local configurations -are always welcome in the [the neovim-flake pull requests tab](https://github.com/notashelf/neovim-flake/pulls). +are always welcome in the [the pull requests tab](https://github.com/notashelf/nvf/pulls). diff --git a/docs/manual/try-it-out.md b/docs/manual/try-it-out.md index 919547e..70aee50 100644 --- a/docs/manual/try-it-out.md +++ b/docs/manual/try-it-out.md @@ -1,6 +1,6 @@ # Try it out {#ch-try-it-out} -Thanks to the portability of Nix, you can try out neovim-flake without actually installing it to your machine. +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 different configurations provided by this flake. As of v0.5, three configurations are provided: @@ -11,8 +11,8 @@ configurations are provided: You may try out any of the provided configurations using the `nix run` command on a system where Nix is installed. ```console -$ cachix use neovim-flake # Optional: it'll save you CPU resources and time -$ nix run github:notashelf/neovim-flake#nix # will run the default minimal configuration +$ cachix use nvf # Optional: it'll save you CPU resources and time +$ nix run github:notashelf/nvf#nix # will run the default minimal configuration ``` Do keep in mind that this is **susceptible to garbage collection** meaning it will be removed from your Nix store @@ -21,9 +21,9 @@ once you garbage collect. ## Using Prebuilt Configs {#sec-using-prebuild-configs} ```console -$ nix run github:notashelf/neovim-flake#nix -$ nix run github:notashelf/neovim-flake#tidal -$ nix run github:notashelf/neovim-flake#maximal +$ nix run github:notashelf/nvf#nix +$ nix run github:notashelf/nvf#tidal +$ nix run github:notashelf/nvf#maximal ``` ### Available Configs {#sec-available-configs} diff --git a/docs/release-notes/release-notes.md b/docs/release-notes/release-notes.md index 6784727..ae115bf 100644 --- a/docs/release-notes/release-notes.md +++ b/docs/release-notes/release-notes.md @@ -1,6 +1,7 @@ # Release Notes {#ch-release-notes} -This section lists the release notes for tagged version of neovim-flake and current main. +This section lists the release notes for tagged version of **nvf** and +the current main current main branch ```{=include=} chapters rl-0.1.md From 97a64abeff5fbef6a8b29c043d88be870d238c45 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 27 Apr 2024 15:51:22 +0300 Subject: [PATCH 2/3] treewide: clean up references to neovim-flake --- flake.nix | 22 +++++++++++++++---- flake/packages.nix | 2 +- lib/stdlib-extended.nix | 2 +- modules/neovim/init/spellcheck.nix | 6 ++--- .../plugins/rich-presence/neocord/neocord.nix | 8 ++++--- modules/plugins/treesitter/treesitter.nix | 3 ++- modules/wrapper/build/options.nix | 10 +++++---- modules/wrapper/rc/options.nix | 4 ++-- 8 files changed, 38 insertions(+), 19 deletions(-) diff --git a/flake.nix b/flake.nix index 80174f9..e63f7ca 100644 --- a/flake.nix +++ b/flake.nix @@ -27,19 +27,33 @@ }; homeManagerModules = { - neovim-flake = { + neovim-flake = + nixpkgs.lib.warn '' + homeManagerModules.neovim-flake has been deprecated. + Plese use the homeManagereModules.nvf instead + '' + self.homeManagerModules.nvf; + + nvf = { imports = [(import ./flake/modules/home-manager.nix self.packages inputs)]; }; - default = self.homeManagerModules.neovim-flake; + default = self.homeManagerModules.nvf; }; nixosModules = { - neovim-flake = { + neovim-flake = + nixpkgs.lib.warn '' + nixosModules.neovim-flake has been deprecated. + Please use the nixosModules.nvf instead + '' + self.nixosModules.neovim-flake; + + nvf = { imports = [(import ./flake/modules/nixos.nix self.packages inputs)]; }; - default = self.nixosModules.neovim-flake; + default = self.nixosModules.nvf; }; }; diff --git a/flake/packages.nix b/flake/packages.nix index dec0614..eb6c946 100644 --- a/flake/packages.nix +++ b/flake/packages.nix @@ -33,7 +33,7 @@ inherit (config.legacyPackages) neovim-nix; in dockerTools.buildImage { - name = "neovim-flake"; + name = "nvf"; tag = "latest"; copyToRoot = buildEnv { diff --git a/lib/stdlib-extended.nix b/lib/stdlib-extended.nix index 2e05650..4bd63b9 100644 --- a/lib/stdlib-extended.nix +++ b/lib/stdlib-extended.nix @@ -9,7 +9,7 @@ nixpkgsLib.extend (self: super: { # Makes our custom functions available under `lib.nvim` where stdlib-extended.nix is imported # with the appropriate arguments. For end-users, a `lib` output will be accessible from the flake. - # E.g. for an input called `neovim-flake`, `inputs.neovim-flake.lib.nvim` will return the set + # E.g. for an input called `nvf`, `inputs.nvf.lib.nvim` will return the set # below. nvim = import ./. { inherit inputs; diff --git a/modules/neovim/init/spellcheck.nix b/modules/neovim/init/spellcheck.nix index 1995532..7a41f25 100644 --- a/modules/neovim/init/spellcheck.nix +++ b/modules/neovim/init/spellcheck.nix @@ -16,7 +16,7 @@ in { ]; options.vim.spellcheck = { - enable = mkEnableOption "neovim's built-in spellchecking"; + enable = mkEnableOption "Neovim's built-in spellchecking"; languages = mkOption { type = listOf str; default = ["en"]; @@ -27,7 +27,7 @@ in { To add your own language files, you may place your `spell` directory in either `~/.config/nvim` or the [additionalRuntimePaths](#opt-vim.additionalRuntimePaths) - directory provided by neovim-flake. + directory provided by **nvf**. ''; }; @@ -38,7 +38,7 @@ in { description = '' A list of filetypes for which spellchecking will be disabled. - You may use `echo &filetype` in neovim to find out the + You may use `echo &filetype` in Neovim to find out the filetype for a specific buffer. ''; }; diff --git a/modules/plugins/rich-presence/neocord/neocord.nix b/modules/plugins/rich-presence/neocord/neocord.nix index 1d6e625..ef4a659 100644 --- a/modules/plugins/rich-presence/neocord/neocord.nix +++ b/modules/plugins/rich-presence/neocord/neocord.nix @@ -7,10 +7,12 @@ in { imports = [ (mkRemovedOptionModule ["vim" "presence" "presence-nvim"] '' - The option vim.presence.presence-nvim has been deprecated in favor of the new neocord module. - Options provided by the plugin remain mostly the same, but manual migration is required. + The option vim.presence.presence-nvim has been deprecated in favor of the new + neocord module. Options provided by the plugin remain mostly the same, but manual + migration is required. - Please see neocord documentation and the neovim-flake options for more info + Please see neocord documentation and options page on the **nvf** manual + for mor einformation '') ] ++ (map diff --git a/modules/plugins/treesitter/treesitter.nix b/modules/plugins/treesitter/treesitter.nix index 916b796..8b06642 100644 --- a/modules/plugins/treesitter/treesitter.nix +++ b/modules/plugins/treesitter/treesitter.nix @@ -27,7 +27,7 @@ in { description = '' List of treesitter grammars to install. - For languages already supported by neovim-flake, you may + For languages already supported by nvf, you may use the {option}`vim.language..treesitter` options, which will automatically add the required grammars to this. ''; @@ -39,6 +39,7 @@ in { description = '' Whether to add the default grammars to the list of grammars to install. + This option is only relevant if treesitter has been enabled. ''; }; diff --git a/modules/wrapper/build/options.nix b/modules/wrapper/build/options.nix index 0711046..8816cbe 100644 --- a/modules/wrapper/build/options.nix +++ b/modules/wrapper/build/options.nix @@ -12,11 +12,14 @@ in { type = package; default = pkgs.neovim-unwrapped; description = '' - The neovim package to use. + The neovim package to use for the wrapper. This + corresponds to the package that will be wrapped + with your plugins and settings. ::: {.warning} You will need to use an unwrapped package for this - option to work as intended. + option to work as intended. Using an already wrapped + package here may yield undesirable results. ::: ''; }; @@ -74,8 +77,7 @@ in { set up after builtin plugins. This option takes a special type that allows you to order - your custom plugins using neovim-flake's modified DAG - library. + your custom plugins using nvf's modified DAG library. ''; example = literalExpression '' diff --git a/modules/wrapper/rc/options.nix b/modules/wrapper/rc/options.nix index 21da8b2..106701e 100644 --- a/modules/wrapper/rc/options.nix +++ b/modules/wrapper/rc/options.nix @@ -102,7 +102,7 @@ in { If this option is passed as a DAG, it will be resolved according to the DAG resolution rules (e.g. entryBefore - or entryAfter) as per the neovim-flake library. + or entryAfter) as per the **nvf** extended library. ''; example = literalMD '' @@ -182,7 +182,7 @@ in { If this option is passed as a DAG, it will be resolved according to the DAG resolution rules (e.g. entryBefore - or entryAfter) as per the neovim-flake library. + or entryAfter) as per the **nvf** extended library. ''; example = literalMD '' From 40979a6d6a701d5b6c9b178a63488a66228b1afb Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 27 Apr 2024 16:04:09 +0300 Subject: [PATCH 3/3] docs: clean up remaining mentions of neovim-flake --- .github/README.md | 128 ++---- .github/assets/LICENSE | 395 ++++++++++++++++++ ...-flake-logo-work.svg => nvf-logo-work.svg} | 0 LICENSE | 2 +- docs/manual/hacking/guidelines.md | 4 +- .../installation/modules/home-manager.md | 2 +- docs/manual/installation/modules/nixos.md | 2 +- 7 files changed, 439 insertions(+), 94 deletions(-) create mode 100644 .github/assets/LICENSE rename .github/assets/{neovim-flake-logo-work.svg => nvf-logo-work.svg} (100%) diff --git a/.github/README.md b/.github/README.md index cd34e6e..a0d8dd4 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,37 +1,37 @@
- neovim-flake Logo + nvf Logo
-

❄️ neovim-flake

+

❄️ nvf

- - Latest release + + Latest release - - Last commit + + Last commit - - License + + License - - Stars + + Stars - - Issues + + Issues - - Repo Size + + Repo Size

- +

A highly modular, configurable, extensible and easy to use Neovim configuration - wrapper written in Nix. Designed for flexibility and ease of use, this flake + framework in Nix. Designed for flexibility and ease of use, this flake allows you to easily configure your Neovim instance with a few lines of Nix code. @@ -69,7 +69,7 @@ If you would like to try out the configuration before even thinking about installing it, you can run the following command ```console -nix run github:notashelf/neovim-flake +nix run github:notashelf/nvf ``` This will get you a feel for the base configuration and UI design. @@ -81,7 +81,7 @@ It is as simple as changing the target output to get a different configuration. For example, to get a configuration with `tidal` support, run: ```console -nix run github:notashelf/neovim-flake#tidal +nix run github:notashelf/nvf#tidal ``` Similar instructions will apply for `nix profile install`. However, you are @@ -93,33 +93,18 @@ recommended to instead use the module system as described in the manual. > configurations. Should you choose to try out the `maximal` configuration, > using the binary cache as described in the manual is _strongly_ recommended. -### Docker - -As of version 0.5, an image for the `nix` output is published to Dockerhub -and GitHub packages with each tagged release. If you do not have Nix installed -on your system, you may run neovim within a container using your favorite tool. -The following command will open the current directory in neovim with necessary -tools bootstrapped. - -```console -docker run -v `pwd`:/home/neovim/demo --rm -it notashelf/neovim-flake:latest -``` - -The available registeres are `ghcr.io` and `dockerhub` for the time being. -Adjust to your liking. - ## Documentation -See the [neovim-flake Manual](https://notashelf.github.io/neovim-flake/) for +See the [**nvf** Manual](https://notashelf.github.io/nvf/) for detailed installation guides, configurations, available options, release notes and more. Tips for installing userspace plugins is also contained in the documentation. -If you want to dive right into trying **neovim-flake** you can get a fully +If you want to dive right into trying **nvf** you can get a fully featured configuration with `nix` language support by running: ```console -nix run github:notashelf/neovim-flake +nix run github:notashelf/nvf#nix ``` Please create an issue on the [issue tracker](../../../issues) if you find @@ -140,62 +125,21 @@ submitting a pull request. You can also create an issue on the [issue tracker](../../../issues) before submitting a pull request if you would like to discuss a feature or bug fix. -## Philosophy - -The philosophy behind this flake configuration is to create an easily -configurable and reproducible Neovim environment. While it does sacrifice in -size (which I know some users will find _disagreeable_), it offers a lot of -flexibility and customizability in exchange for the large size of the flake -inputs. The "KISS" (Keep it simple, stupid) principle has mostly been abandoned -here, however, you _can_ ultimately leverage the flexibility of this flake to -declare a configuration that follows KISS principles, as it is very easy to -bring your own plugins and configurations from non-nix. What this flake is -meant to be does eventually fall into your hands. Whether you are a developer, -writer, or live coder, you can quickly craft a config that suits every project's -needs. Think of it like a distribution of Neovim that you have full control over. - -A distribution that takes advantage of pinning vim plugins and third party -dependencies (such as tree-sitter grammars, language servers, and more). - -One should never get a broken config when setting options. If setting multiple -options results in a broken Neovim, file an issue! Each plugin knows when another -plugin which allows for smart configuration of keybindings and automatic setup -of things like completion sources and languages. - ## FAQ -**Q**: Why is this flake so big? -
-**A**: I have sacrificed in size in order to provide a highly configurable and -reproducible Neovim environment. A binary cache is provided to eleminate the -need to build the flake from source, but it is still a large flake. If you do -not need all the features, you can use the default `nix` output instead of the -`maximal` output. This will reduce size by a lot, but you will lose some -language specific features. -

- -**Q**: Will you try to make this flake smaller? -
-**A**: Yes. As a matter of fact, I am actively working on making this flake -smaller. Unfortunately the process of providing everything possible by itself -makes the flake large. Best I can do is to optimize the flake as much as -possible by selecting plugins that are small and fast. And the binary cache, so -at least you don't have to build it from source. -

- -**Q**: Will you use a plugin manager/language server installer? -
-**A**: No. If you feel the need to ask that question, then you have missed the -whole point of using nix and ultimately this flake. The whole reason we use nix -is to be able to handle EVERYTHING declaratively, well including the LSP and -plugin installations. -

- **Q**: Can you add _X_?
-**A**: Maybe. Open an issue using the appropriate template and I will consider -it. I do not intend to add _every plugin that is in existence_, but I will -consider it, should it offer something useful to the flake. +**A**: Maybe! It is not one of our goals to support each and every Neovim +plugin, however, I am always open to new modules and plugin setup additions +to **nvf**. Use the [appropritate issue +template](https://github.com/NotAShelf/nvf/issues/new/choose) and I will +consider a module addition. + +**Q**: A plugin I need is not available in **nvf**. What to do? +
+**A**: **nvf** exposes several APIs for you to be able to add your own +plugin configurations! Please see the documentation on how you may do +this. ## Credits @@ -207,7 +151,7 @@ Special thanks to - [@FlafyDev](https://github.com/FlafyDev) - For getting the home-manager to work - [@n3oney](https://github.com/n3oney) - For making custom keybinds finally possible - [@horriblename](https://github.com/horriblename) - For actively implementing planned features and quality of life updates -- [@Yavko](https://github.com/Yavko) - For the amazing neovim-flake logo +- [@Yavko](https://github.com/Yavko) - For the amazing **nvf** logo - [@FrothyMarrow](https://github.com/FrothyMarrow) - For seeing mistakes that I could not and everyone who has submitted issues or pull requests! @@ -226,4 +170,10 @@ I am grateful for their previous work and inspiration, and I wholeheartedly recommend checking their work out.
+## License + +Following the [original neovim-flake](https://github.com/jordanisaacs/neovim-flake) +**nvf** has been made available under the **MIT License**. However, all assets +are published under the [CC BY License]. + --- diff --git a/.github/assets/LICENSE b/.github/assets/LICENSE new file mode 100644 index 0000000..10fabd9 --- /dev/null +++ b/.github/assets/LICENSE @@ -0,0 +1,395 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public licenses. +Notwithstanding, Creative Commons may elect to apply one of its public +licenses to material it publishes and in those instances will be +considered the “Licensor.” The text of the Creative Commons public +licenses is dedicated to the public domain under the CC0 Public Domain +Dedication. Except for the limited purpose of indicating that material +is shared under a Creative Commons public license or as otherwise +permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the public +licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/.github/assets/neovim-flake-logo-work.svg b/.github/assets/nvf-logo-work.svg similarity index 100% rename from .github/assets/neovim-flake-logo-work.svg rename to .github/assets/nvf-logo-work.svg diff --git a/LICENSE b/LICENSE index 342db3f..0e03fa9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 NotAShelf +Copyright (c) 2023-2024 NotAShelf Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/manual/hacking/guidelines.md b/docs/manual/hacking/guidelines.md index f90c02f..c709825 100644 --- a/docs/manual/hacking/guidelines.md +++ b/docs/manual/hacking/guidelines.md @@ -110,12 +110,12 @@ to contain the parent as well - for example `languages/java: some major change`. ## Code Style {#sec-guidelines-code-style} -### Treewide +### 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 +### Nix {#sec-code-style-nix} **nvf** is formatted by the [alejandra](https://github.com/kamadorueda/alejandra) tool and the formatting is checked in the pull request and push workflows. Run the diff --git a/docs/manual/installation/modules/home-manager.md b/docs/manual/installation/modules/home-manager.md index 0b80a10..6764f79 100644 --- a/docs/manual/installation/modules/home-manager.md +++ b/docs/manual/installation/modules/home-manager.md @@ -33,7 +33,7 @@ Followed by importing the home-manager module somewhere in your configuration. } ``` -## Example Installation {#sec-example-installation} +## Example Installation {#sec-example-installation-hm} ```nix { diff --git a/docs/manual/installation/modules/nixos.md b/docs/manual/installation/modules/nixos.md index 9be8a7f..9cbc144 100644 --- a/docs/manual/installation/modules/nixos.md +++ b/docs/manual/installation/modules/nixos.md @@ -33,7 +33,7 @@ Followed by importing the NixOS module somewhere in your configuration. } ``` -## Example Installation {#sec-example-installation} +## Example Installation {#sec-example-installation-nixos} ```nix {