Skip to content

trailblazing/boot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

```
:::text

boot.vim

A Vim plugin that provide basic operations such as system calls, logs and
debug info.

===============================================================================
===============================================================================

1. Installation
2. Compatibility
3. Development
4. References
5. License

1. Installation
===============================================================================
The plugin is only one file. So you can check out the repository[1][4] and drop
boot.vim into your directory.
~/.vim/pack/*/start/ for Vim, or
~/.local/share/nvim/site/pack/*/start/ for Neovim.
For package management lazy.nvim
In some plugins .lua
    {
        "trailblazing/boot",
        event = { "VimEnter" },
        lazy = false,
    },

In config.lua
local boot_path = vim.fn.stdpath("data") .. "lazy/boot"
if fn.empty(fn.glob(boot_path)) > 0 then
    do return end
end
vim.opt.rtp:prepend(boot_path)

-- If you'd like to change the loading sequence:
vim.cmd([[
    let boot_load_path = stdpath("data") . '/lazy/boot/autoload/boot.vim'
    execute "source " . boot_load_path
    execute "runtime! " . boot_load_path
]])

2. Compatibility
===============================================================================
boot.vim uses some shell-isms. Therefore it probably only works on *nix
machines that have a proper shell. It likely also functions under cygwin.

3. Development
===============================================================================
Pull requests are very welcome.

Some updates, with the goal of minimizing interaction and configuration.
Basic functionality out of the box.

4. References
===============================================================================
[1] https://github.com/trailblazing/keys.git

5. License
===============================================================================
GPL v.3 and later

```

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published