Files
nvim/README.md
Steven Medeiros Melo 3fe3f967f6 Changed my Neovim config
2025-03-17 17:40:37 -04:00

2.2 KiB

README

- IMPORTANT NOTE -

If one of the installed plugins don't work (i.e. Mason) Start by updating neovim to the newest dev build It should fix the issues

Documentation on how my neovim install is configured

  • The File Structure of my configuration
  • Where my files are located, their purpose and how they're called

Files Extensions Found In This Repo

image alt file_ext .vim Vim
image alt file_ext .lua Lua
image alt file_ext .md Markdown

CURRENT FILE STRUCTURE

📁 ~/.config/nvim
├── 📁 lua
│  └── 📁 stevenmm
│     ├── 📁 lazy
│     │  └── ⚙ plugin_name.lua
│     ├── ⚙ init.lua
│     ├── ⚙ lazy_init.lua
│     ├── ⚙ remap.lua
│     ├── ⚙ set.lua
│     └── ⚙ variables.lua
├── ⚙ README.md
└── ⚙ init.vim

Function Equivalence

function .lua .vim Vimscript Functions From Lua
Sourcing a file require() source vim.cmd.source()

Vim Commands

Use require() when trying to source a .lua file inside a .lua, if you want to source .vim files use the lua vim interpretor vim.cmd.source().

Vimscript Functions

If the vim function you're trying to call inside of a .lua file isn't a Vim command use the Vimscript Functions nomenclature instead.

Use the See also:section for more information on which commands can be called

Function List