diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-03-09 23:56:22 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2025-03-17 12:31:53 +0100 |
commit | f96606371c13fd10280d737a4e3e2ae9149c2067 (patch) | |
tree | f508a3c9ae52ac10d682625201ec16e8d9fd7887 /runtime/lua/vim/_meta/options.lua | |
parent | 041a939eeb21dd8a62c479f12cc9334d3d30a832 (diff) | |
download | rneovim-f96606371c13fd10280d737a4e3e2ae9149c2067.tar.gz rneovim-f96606371c13fd10280d737a4e3e2ae9149c2067.tar.bz2 rneovim-f96606371c13fd10280d737a4e3e2ae9149c2067.zip |
docs: misc
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 775dda59f7..5e138c1a4a 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -2010,9 +2010,10 @@ vim.o.et = vim.o.expandtab vim.bo.expandtab = vim.o.expandtab vim.bo.et = vim.bo.expandtab ---- Automatically execute .nvim.lua, .nvimrc, and .exrc files in the ---- current directory, if the file is in the `trust` list. Use `:trust` to ---- manage trusted files. See also `vim.secure.read()`. +--- Enables project-local configuration. Nvim will execute any .nvim.lua, +--- .nvimrc, or .exrc file found in the `current-directory`, if the file is +--- in the `trust` list. Use `:trust` to manage trusted files. See also +--- `vim.secure.read()`. --- --- Compare 'exrc' to `editorconfig`: --- - 'exrc' can execute any code; editorconfig only specifies settings. |