vim-options

Opening directly at a line number:

  • You can open a file and go directly to a specific line number by specifying it when opening the file:
nvim +<line_number> <filename>
nvim +50 example.txt

https://github.com/rockerBOO/awesome-neovim?tab=readme-ov-file

Lazy-loading

Command Execution

require("barbecue.ui").navigate(-1)

these types of commands you have to execute like

:lua require("barbecue.ui").navigate(-1)

if you want to setup a keyboard shortcut for that

vim.api.nvim_set_keymap('n', '<Leader>n', ':lua require("barbecue.ui").navigate(-1)<CR>', { noremap = true, silent = true })