Skip to content
/ starter.nvim Public template

Basic template for LazyVim plugin πŸ’€

Notifications You must be signed in to change notification settings

l0kr/starter.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

9 Commits
Β 
Β 
Β 
Β 

Repository files navigation

Starter.nvim

Basic template for LazyVim plugin πŸ’€

Create new lua file in ~/.config/nvim/lua/plugins

return {
    {
        dir = '~/starter.nvim', -- path to your plugin directory
        name = "starter",
        config = function()
            require("starter").setup()
        end
    },
}

Alternative file structure / naming convention

Intsead of just lua/starter.lua you can have lua/starter/init.lua

⚠ Don't mix those two conventions, structure lua/starter/starter.lua does not work

starter.nvim
└── lua
Β Β  └── starter
Β Β      └── init.lua


3 directories, 1 file

Releases

No releases published

Packages

No packages published

Languages