# Directory Local Vim Config ## Metadata **Status**:: #x **Zettel**:: #zettel/fleeting **Created**:: [[2025-06-20]] ## Synopsis Start vim by setting the option `exrc`. Use `--cmd` to ensure the option is set before opening any file. ``` vim --cmd 'set ex' ``` - Vim supports `.vimrc`, `.exrc` and `.gvimrc` - Neovim supports `.nvim.lua`, `.nvimrc` and `.exrc` LazyVim also supports `.lazy.lua` which can return a table of plugin settings. ```lua return { { "stevearc/conform.nvim", opts = { formatters_by_ft = { java = { "google-java-format" }, vue = { " EsLintFixAll" }, }, }, }, } ```