mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
modules/options: improve documentation
This commit is contained in:
parent
61013ca4ab
commit
acc9c8cad1
1 changed files with 4 additions and 4 deletions
|
@ -10,28 +10,28 @@ with lib; let
|
|||
prettyName = "options";
|
||||
luaVariableName = "options";
|
||||
luaApi = "opt";
|
||||
description = "The configuration options, e.g. line numbers";
|
||||
description = "The configuration options, e.g. line numbers (`vim.opt.*`)";
|
||||
};
|
||||
|
||||
globalOptions = {
|
||||
prettyName = "global options";
|
||||
luaVariableName = "global_options";
|
||||
luaApi = "opt_global";
|
||||
description = "The configuration global options";
|
||||
description = "The configuration global options (`vim.opt_global.*`)";
|
||||
};
|
||||
|
||||
localOptions = {
|
||||
prettyName = "local options";
|
||||
luaVariableName = "local_options";
|
||||
luaApi = "opt_local";
|
||||
description = "The configuration local options";
|
||||
description = "The configuration local options (`vim.opt_local.*`)";
|
||||
};
|
||||
|
||||
globals = {
|
||||
prettyName = "globals";
|
||||
luaVariableName = "globals";
|
||||
luaApi = "g";
|
||||
description = "Global variables";
|
||||
description = "Global variables (`vim.g.*`)";
|
||||
};
|
||||
};
|
||||
in {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue