You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nice project. When do you plan to blog about this to make up your mind on the user interface, functionality etc or
do you have already a clear vision (to limit scope/keep it maintainable) ?
-- run with: nvim --clean -u min_init.lua main.zig
vim.o.packpath = '/tmp/nvim/site'
local plugins = {
gitsigns = 'https://github.com/lewis6991/gitsigns.nvim',
}
local plugin_name = 'gitsigns'
for name, url in pairs(plugins) do
local install_path = '/tmp/nvim/site/pack/test/start/'..name
if vim.fn.isdirectory(install_path) == 0 then
vim.fn.system { 'git', 'clone', '--depth=1', url, install_path }
end
end
require(plugin_name).setup{
debug_mode = true, -- You must add this to enable debug messages
}
lua formatter?
The text was updated successfully, but these errors were encountered:
Nice project. When do you plan to blog about this to make up your mind on the user interface, functionality etc or
do you have already a clear vision (to limit scope/keep it maintainable) ?
The text was updated successfully, but these errors were encountered: