diff options
| author | 2022-11-08 13:06:08 -0500 | |
|---|---|---|
| committer | 2022-11-08 13:06:08 -0500 | |
| commit | 946b25db1aa005bf072c3c468cb0641cf2fac45d (patch) | |
| tree | 1afe414f65b2ff978cf3227ee424c21835158672 /dot_config/nvim/lua/util.lua | |
| parent | git: update config (diff) | |
nvim: init bootstrappable config
Diffstat (limited to 'dot_config/nvim/lua/util.lua')
| -rw-r--r-- | dot_config/nvim/lua/util.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dot_config/nvim/lua/util.lua b/dot_config/nvim/lua/util.lua new file mode 100644 index 0000000..aa114d8 --- /dev/null +++ b/dot_config/nvim/lua/util.lua @@ -0,0 +1,10 @@ +-- hasplug +local function hp(plug) + return packer_plugins and + packer_plugins[plug] and + packer_plugins[plug].loaded +end + +return { + hp = hp, +} |
