GithubHelp home page GithubHelp logo

boot's Introduction

```
:::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

```

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.