1
0
Fork 0

add nvim-ghost plugin

This commit is contained in:
Luca Bilke 2023-02-21 13:00:49 +01:00
parent 7263fcb3a1
commit a6628ff3cc
2 changed files with 5 additions and 0 deletions

View file

@ -59,6 +59,7 @@ M.whichkey = {
u = {
name = "Utility",
c = { "<cmd>w!<CR><cmd>!compiler \"%:p\"<CR>", "Compile" },
g = { "<cmd>PackerLoad nvim-ghost.nvim<CR>", "Start ghost server" },
},
l = {
name = "LSP",

View file

@ -203,6 +203,10 @@ local plugins = {
require('plugins.config.project')
end,
},
{ "subnut/nvim-ghost.nvim",
opt = true,
run = ":call nvim_ghost#installer#install()",
},
}
local status_ok, packer = pcall(require, "packer")