-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
66 lines (53 loc) · 1.86 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
```
:::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
```