Skip to content

Neovim Module bundler to bundle lua modules to a single lua script

License

Notifications You must be signed in to change notification settings

bas1lbabu/vmod-loader

 
 

Repository files navigation

Vazha Mod Loader

Vazha Mod Loader is a module bundler to bundle neovim config files written in lua
Vazha Mod Loader provides a fast bundler which looks for modules descibed in the configuration file and bundles all the modules with path namespace in a single lua script.



v4zha

vmod

Current Features

  • Provides Configuration file to change config and rebundle.

  • Provides custom config path with the optional --cfg flag .


Eg:

 #Displays Vmod version

   vmod -v 

   #q flag to suppress Vmodbanner
   vmod --version -q
 #Reads config file

   vmod --cfg ./v4zha.yml
   
   vmod -f --quiet ./v4zha.yml
  • Default config location ~/.config/vmod/vmod.yml
  • required config fields
 #Ignores the modules section and finds all modules in mod_path
 
   vmod -a 

   vmod --all
  • Ignores the modules section in the config and auto add all modules in mod_path
     #Path where Neovim lua modules are located
     #Eg : ~/.config/nvim/lua/v4zha
     mod_path: 
       ~/.config/nvim/lua/v4zha
     #PATH to the New module_bundled lua script 
     res_file: 
       ~/.config/nvim/init.lua
     #List the modules
     #Eg : 
     modules : 
       - general
       - keymaps
       - plugins
       # reads the mod_path for lua scripts : )
       - .

Eg :

      📂 ~/.config/nvim
       ├── 📂 lua
       │    └──📂 v4zha
       │       ├──📂 general
       │       │  ├── 📄 utils.lua
       │       │  └── 📄 colorscheme.lua
       │       │
       │       ├──📂 keymaps
       │       │  ├──  📄 leader.lua
       │       │  ├──  📄 terminal.lua
       │       │  └──  📄 general.lua
       │       │
       │       ├──📂 plugins
       │       │  ├── 📄 telescope.lua
       │       │  └── 📄 toggleterm.lua
       │       │  └── 📂 treesitter
       │       │      └── 📄 init.lua
       │       └── 📄 plugin.lua
       │
       └── 📄 init.lua 

generated init.lua

      -- ==============================
      -- GENERATED BY V MOD LOADER : )
      -- ==============================

      -- ==============================
      --    MOD : general
      -- ==============================
      require("v4zha.general.utils")
      require("v4zha.general.colorscheme")
      -- ==============================
      --    MOD : keymaps
      -- ==============================
      require("v4zha.keymaps.general")
      require("v4zha.keymaps.terminal")
      require("v4zha.keymaps.leader")
      -- ==============================
      --    MOD : plugin_config
      -- ==============================
      require("v4zha.plugins.toggleterm")
      require("v4zha.plugins.telescope")
      require("v4zha.plugins.treesitter")
      -- ==============================
      --    MOD : v4zha
      -- ==============================
      require("v4zha.plugin")

Installation

  • Download and run installation script install.sh
    OR
  • Run the following commands
curl -L  https://github.com/v4zha/vmod-loader/releases/latest/download/install.sh > /tmp/install.sh
chmod +x /tmp/install.sh
/tmp/install.sh

Build

  • Requires cabal,ghc and necessary build tools.
  • Configure cabal build using cabal. configure
  cabal build

to run the binary with arguments in cabal

  cabal run vmod -- --cfg /location/to/config.yml
  cabal run vmod -- -f -q /location/to/config.yml

Test

  • Unit Tests can be found in test directory to run tests
  cabal test all

About

Neovim Module bundler to bundle lua modules to a single lua script

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Haskell 90.9%
  • Shell 9.1%