Steven Medeiros Melo 9eae74aacc Changed the main theme
added some extension to telescope
2025-02-22 23:25:53 -05:00
2025-02-22 23:25:53 -05:00
2024-02-23 20:12:22 -05:00
2024-02-23 20:12:22 -05:00
2025-02-22 23:25:53 -05:00
2024-02-23 20:12:22 -05:00
2024-02-23 20:12:22 -05:00

README

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
├── 📁 after
├── 📁 ftplugin
├── 📁 lua
│  ├── 📁 other_modules
│  └── ⚙ init.lua
├── 📁 plugin
│  └── ⚙ init-vim-plug.vim
├── 📁 syntax
├── 📁 TMP
├── 📁 vimplug
├── ⚙ 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

Description
No description provided
Readme 114 KiB
Languages
Lua 99.2%
CSS 0.8%