Hello! I'm new to both init.lua and Packer (been using init.lua and Plug my whole life), although I did know Lua and Luarocks beforehand. I just found the luarocks capability of this plugin, but unfortunately I can't figure out how to use it. Currently what I'm trying to achieve is to require a rock from a file that's being sourced from init.lua:
init.lua
require("pluginsList.lua") -- packer, for installing plugins
require("myTest.lua") -- the file where the rock is used
pluginList/lua.lua
-- check if packer is installed (~/local/share/nvim/site/pack)
local packer_exists = pcall(vim.cmd, [[packadd packer.nvim]])
return require("packer").startup(
function()
-- main - puglin manager
use {"wbthomason/packer.nvim", opt = true}
-- some plugins here in the middle...
----------------------------=== Luarocks ===--------------------------
use_rocks 'effil' -- the rock I need
end
)
myTest/lua.lua
local effil = require("effil")
The docs say that one should call the function packer.luarocks.install_commands() in order to unlock the PackerRock command. And so I did with this line of code require("packer").luarocks.hererocks_is_setup() but it's showing this:

Can somebody help me with this and teach me how to go about it? And also, how should I call this library from myTest/lua.lua?
@kdav5758 I think you can go about what you want more easily than using the install_commands or is_setup() function. When you use use_rocks that should install the lua rock. Before adding it to some part of your config I would call PackerInstall before trying to require your rock. So that it can be installed first.
So steps are:
use_rocks 'effil'PackerSync this should install the rock, or show you an error:lua print(vim.inspect(require'effil'))Then once it is installed it is safe to use in your config. One thing to clarify is that
require("pluginsList.lua") -- Plugins have not been loaded at this point
require("myTest.lua") -- If used here the plugin might not be installed yet on the first run so this will error
if you want to specify things int he order you have above I recommend using pcall so that the config is more portable
Thanks for replying @akinsho! Following your recomendations, I replaced all my require calls with pcalls like so:
-- lua
pcall(require,"pluginsList.lua") -- packer, for installing plugins
pcall(require,"file-icons.lua") -- icons, for nvimTree
pcall(require,"misc-utils.lua") -- general configs
pcall(require,"nvimTree.lua") -- file explorer
pcall(require,"bufferline.lua") -- bufferLine, show buffers as tabs
pcall(require,"statusline.lua") -- galaxyline, a modern status line
pcall(require,"indentBlackLine.lua") -- manage indentation
pcall(require,"treesitter.lua") -- treesitter, better syntax highlighting
pcall(require,"cocNvim.lua") -- coc.nvim, completion, lintings, LSP
pcall(require,"mappings.lua") -- editor's mappings
pcall(require,"gitsigns.lua") -- git specific icons
pcall(require,"colorScheme.lua") -- color scheme and highlights
pcall(require,"colorizer.setup()") -- colorizer for nvim
I also ran :PackerSync after I did the :PackerInstall and I can now require the library, tho I came across some new issues:
:lua print(vim.inspect(require'effil')) gives me this error:
local effil = require("effil")
hererocks installed (w/ pip3 and pip), but while doing :PackerSync the "loading" icon never turns into a checkmark in the case of hererocks, even after 5-6 minutes:
require("packer") before the local effil = require("effil"). Could you also help me with this?Thanks again for the fast response btw!
@kdav5758 It looks like your environment might be interfering with what packer expects for Luarocks use (which might mean we need to fix something). Specifically, it seems that your rock has been installed to a luaenv path for Lua 5.3, whereas packer expects to install rocks to its own path, and only works with LuaJIT (so, Lua 5.1 - this restriction is because Neovim uses LuaJIT in most environments).
For the hererocks installation hang: can you share (1) the details about your environment and (2) the contents, if any, of ~/.cache/nvim/packer.nvim.log?
You should be able to require the library from anywhere within Neovim (except init.lua unless you manually source packer_compiled first or set up the modifications to package.path and package.cpath yourself - this is a known issue).
I think what's happening is that Lua on your system looks in the wrong environment if you try to require before packer_compiled has been sourced. As a workaround, I'd suggest copying the package.path etc. lines from packer_compiled to the start of your init.lua, and seeing if requires work as expected then.
As a side note so they don't remain in you config forever the comment about adding a pcall(require('thing-uses-effil')) was just about silencing the error in the one file where you were using the rock that hadn't been installed so it wouldn't error whilst you re-ran packer sync. You shouldn't generally need to wrap all your requires like that
Hello @wbthomason!
For the
hererocksinstallation hang: can you share (1) the details about your environment and (2) the contents, if any, of~/.cache/nvim/packer.nvim.log?
- Which exact details do you need? Do you mean like my lua version(s) and nvim version? If that's the case, then:
For managing Lua/Luarocks versions I use luaver, currently this is my lua setup:
Lua:
shell $ luaver current
==> Current versions:
==> lua-5.3.6
==> luarocks-3.6.0
Hererocks:
shell $ hererocks -v
Hererocks 0.23.0
Nvim:
NVIM v0.5.0-dev+1225-gbbdd00203
Build type: RelWithDebInfo
LuaJIT 2.1.0-beta3
If you need anything else related to my configuration, can checkout my Nvim config files here.
2.
[DEBUG dom 04 abr 2021 14:51:37] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/packer.nvim" }
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed wbthomason/packer.nvim
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed windwp/nvim-autopairs
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed kyazdani42/nvim-web-devicons
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed nvim-lua/popup.nvim
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed alvan/vim-closetag
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed tweekmonster/startuptime.vim
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed nvim-telescope/telescope-media-files.nvim
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed lukas-reineke/indent-blankline.nvim/lua
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed 907th/vim-auto-save
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed norcalli/nvim-base16.lua
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed glepnir/galaxyline.nvim
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed norcalli/nvim-colorizer.lua
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed lewis6991/gitsigns.nvim
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed sbdchd/neoformat
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed onsails/lspkind-nvim
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed neovim/nvim-lspconfig
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed hrsh7th/nvim-compe
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed nvim-telescope/telescope.nvim
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed akinsho/nvim-bufferline.lua
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed kyazdani42/nvim-tree.lua
[DEBUG dom 04 abr 2021 14:51:38] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed nvim-treesitter/nvim-treesitter
[DEBUG dom 04 abr 2021 14:51:39] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed karb94/neoscroll.nvim
[DEBUG dom 04 abr 2021 14:51:39] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed ryanoasis/vim-devicons
[DEBUG dom 04 abr 2021 14:51:40] ...ite/pack/packer/start/packer.nvim/lua/packer/install.lua:23: Installed nvim-lua/plenary.nvim
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/opt/packer.nvim/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-tree.lua/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/gitsigns.nvim/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-bufferline.lua/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-auto-save/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-treesitter/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-colorizer.lua/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-devicons/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/neoformat/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-lspconfig/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-compe/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/telescope.nvim/doc
[INFO dom 04 abr 2021 14:51:40] ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/neoscroll.nvim/doc
[INFO dom 04 abr 2021 19:47:49] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[INFO dom 04 abr 2021 20:30:08] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[INFO dom 04 abr 2021 20:30:24] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG dom 04 abr 2021 20:30:25] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed tpope/vim-commentary
[INFO dom 04 abr 2021 20:30:25] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-commentary/doc
[INFO lun 05 abr 2021 15:10:51] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[WARN lun 05 abr 2021 15:11:08] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:75: Cleaning cancelled!
[DEBUG lun 05 abr 2021 15:11:11] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed neoclide/coc.nvim
[INFO lun 05 abr 2021 15:11:11] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/coc.nvim/doc
[INFO lun 05 abr 2021 15:11:47] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[DEBUG lun 05 abr 2021 15:11:59] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/lspkind-nvim", "/home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-lspconfig" }
[INFO lun 05 abr 2021 15:12:09] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[DEBUG lun 05 abr 2021 15:13:58] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/coc.nvim" }
[INFO lun 05 abr 2021 15:14:10] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 15:14:11] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed onsails/lspkind-nvim
[DEBUG lun 05 abr 2021 15:14:11] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed neovim/nvim-lspconfig
[INFO lun 05 abr 2021 15:14:11] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-lspconfig/doc
[INFO lun 05 abr 2021 15:26:34] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 15:26:35] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed kabouzeid/nvim-lspinstall
[INFO lun 05 abr 2021 16:56:51] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[DEBUG lun 05 abr 2021 16:57:01] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-compe" }
[DEBUG lun 05 abr 2021 16:57:02] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed nvim-lua/completion-nvim
[INFO lun 05 abr 2021 16:57:02] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/completion-nvim/doc
[DEBUG lun 05 abr 2021 17:03:18] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/plenary.nvim" }
[DEBUG lun 05 abr 2021 17:04:12] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/telescope.nvim", "/home/sebas5758/.local/share/nvim/site/pack/packer/start/telescope-media-files.nvim" }
[INFO lun 05 abr 2021 17:04:56] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 17:04:58] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed nvim-lua/plenary.nvim
[DEBUG lun 05 abr 2021 17:10:37] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/plenary.nvim", "/home/sebas5758/.local/share/nvim/site/pack/packer/start/gitsigns.nvim" }
[INFO lun 05 abr 2021 17:36:29] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 17:36:30] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed hrsh7th/nvim-compe
[INFO lun 05 abr 2021 17:36:30] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-compe/doc
[DEBUG lun 05 abr 2021 17:38:00] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/completion-nvim" }
[INFO lun 05 abr 2021 17:43:15] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 17:43:16] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed vim-utils/vim-man
[INFO lun 05 abr 2021 17:43:16] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-man/doc
[INFO lun 05 abr 2021 17:44:35] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[WARN lun 05 abr 2021 17:44:50] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:75: Cleaning cancelled!
[DEBUG lun 05 abr 2021 17:44:53] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed neoclide/coc.nvim
[INFO lun 05 abr 2021 17:44:53] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/coc.nvim/doc
[INFO lun 05 abr 2021 17:45:11] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[DEBUG lun 05 abr 2021 17:45:16] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/lspkind-nvim", "/home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-lspconfig" }
[DEBUG lun 05 abr 2021 17:46:10] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-lspinstall" }
[DEBUG lun 05 abr 2021 17:59:55] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-compe" }
[DEBUG lun 05 abr 2021 18:00:56] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-devicons" }
[DEBUG lun 05 abr 2021 18:01:14] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-autopairs" }
[INFO lun 05 abr 2021 18:26:16] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 18:26:17] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed lewis6991/gitsigns.nvim
[INFO lun 05 abr 2021 18:26:17] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/gitsigns.nvim/doc
[INFO lun 05 abr 2021 18:26:47] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 18:26:49] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed nvim-lua/plenary.nvim
[DEBUG lun 05 abr 2021 18:31:52] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/gitsigns.nvim" }
[INFO lun 05 abr 2021 18:32:32] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 18:32:33] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed lewis6991/gitsigns.nvim
[INFO lun 05 abr 2021 18:32:33] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/gitsigns.nvim/doc
[INFO lun 05 abr 2021 18:34:23] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 18:34:26] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed sheerun/vim-polyglot
[INFO lun 05 abr 2021 18:34:26] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-polyglot/doc
[DEBUG lun 05 abr 2021 18:35:31] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-polyglot" }
[INFO lun 05 abr 2021 18:36:16] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 18:36:18] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed sheerun/vim-polyglot
[INFO lun 05 abr 2021 18:36:18] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-polyglot/doc
[DEBUG lun 05 abr 2021 18:36:50] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/plenary.nvim" }
[DEBUG lun 05 abr 2021 18:37:43] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/neoscroll.nvim" }
[DEBUG lun 05 abr 2021 18:37:45] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed nvim-lua/plenary.nvim
[INFO lun 05 abr 2021 18:40:07] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 18:40:08] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed mbbill/undotree
[INFO lun 05 abr 2021 18:40:08] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/undotree/doc
[DEBUG lun 05 abr 2021 18:41:56] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-closetag" }
[INFO lun 05 abr 2021 18:45:01] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 18:45:01] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed Dinduks/vim-java-get-set
[DEBUG lun 05 abr 2021 20:40:38] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-treesitter" }
[INFO lun 05 abr 2021 20:41:34] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG lun 05 abr 2021 20:41:35] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed nvim-treesitter/nvim-treesitter
[INFO lun 05 abr 2021 20:41:35] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-treesitter/doc
[INFO mar 06 abr 2021 07:52:31] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG mar 06 abr 2021 07:52:32] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed moll/vim-bbye
[DEBUG mar 06 abr 2021 16:09:02] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-colorizer.lua" }
[INFO mar 06 abr 2021 16:10:02] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG mar 06 abr 2021 16:10:03] .../site/pack/packer/opt/packer.nvim/lua/packer/install.lua:23: Installed norcalli/nvim-colorizer.lua
[INFO mar 06 abr 2021 16:10:03] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:84: Updating helptags for /home/sebas5758/.local/share/nvim/site/pack/packer/start/nvim-colorizer.lua/doc
[INFO mi茅 07 abr 2021 09:30:45] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[INFO mi茅 07 abr 2021 09:30:50] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[INFO mi茅 07 abr 2021 17:48:45] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[INFO mi茅 07 abr 2021 17:49:03] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[INFO mi茅 07 abr 2021 17:50:38] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[ERROR mi茅 07 abr 2021 18:04:39] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:494: Failure running setup function: "/home/sebas5758/.config/nvim/lua/pluginsList/lua.lua:53: attempt to index global 'packer' (a nil value)"
[ERROR mi茅 07 abr 2021 18:04:53] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:494: Failure running setup function: "/home/sebas5758/.config/nvim/lua/pluginsList/lua.lua:53: attempt to index global 'luarocks' (a nil value)"
[INFO mi茅 07 abr 2021 18:04:57] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[ERROR mi茅 07 abr 2021 18:14:37] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:494: Failure running setup function: "/home/sebas5758/.config/nvim/lua/pluginsList/lua.lua:12: attempt to index global 'luarocks' (a nil value)"
[DEBUG jue 08 abr 2021 08:12:34] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:68: Removed { "/home/sebas5758/.local/share/nvim/site/pack/packer/start/vim-polyglot" }
[INFO jue 08 abr 2021 10:57:39] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated kyazdani42/nvim-web-devicons: {
err = {},
messages = { "ecc0ec0 Fix CMake icon (2 days ago)\n41f5c76 Add COPYING license icon (2 days ago)\n95c6d6b fix: avoid being overridden by setting colorscheme (3 days ago)" },
output = { "remote: Enumerating objects: 30, done. \nremote: Counting objects: 3% (1/30) \rremote: Counting objects: 6% (2/30) \rremote: Counting objects: 10% (3/30) \rremote: Counting objects: 13% (4/30) \rremote: Counting objects: 16% (5/30) \rremote: Counting objects: 20% (6/30) \rremote: Counting objects: 23% (7/30) \rremote: Counting objects: 26% (8/30) \rremote: Counting objects: 30% (9/30) \rremote: Counting objects: 33% (10/30) \rremote: Counting objects: 36% (11/30) \rremote: Counting objects: 40% (12/30) \rremote: Counting objects: 43% (13/30) \rremote: Counting objects: 46% (14/30) \rremote: Counting objects: 50% (15/30) \rremote: Counting objects: 53% (16/30) \rremote: Counting objects: 56% (17/30) \rremote: Counting objects: 60% (18/30) \rremote: Counting objects: 63% (19/30) \rremote: Counting objects: 66% (20/30) \rremote: Counting objects: 70% (21/30) \rremote: Counting objects: 73% (22/30) \rremote: Counting objects: 76% (23/30) \rremote: Counting objects: 80% (24/30) \rremote: Counting objects: 83% (25/30) \rremote: Counting objects: 86% (26/30) \rremote: Counting objects: 90% (27/30) \rremote: Counting objects: 93% (28/30) \rremote: Counting objects: 96% (29/30) \rremote: Counting objects: 100% (30/30) \rremote: Counting objects: 100% (30/30), done. \nremote: Compressing objects: 14% (1/7) \rremote: Compressing objects: 28% (2/7) \rremote: Compressing objects: 42% (3/7) \rremote: Compressing objects: 57% (4/7) \rremote: Compressing objects: 71% (5/7) \rremote: Compressing objects: 85% (6/7) \rremote: Compressing objects: 100% (7/7) \rremote: Compressing objects: 100% (7/7), done.", "remote: Total 12 (delta 3), reused 6 (delta 2), pack-reused 0", "From https://github.com/kyazdani42/nvim-web-devicons\n 777e5ec..ecc0ec0 master -> origin/master", "Updating 777e5ec..ecc0ec0\nFast-forward", "lua/nvim-web-devicons.lua | 46 ++++++++++++++++++++++++++++++++++++----------\n 1 file changed, 36 insertions(+), 10 deletions(-)" },
revs = { "777e5ec", "ecc0ec0" }
}
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated lukas-reineke/indent-blankline.nvim/lua: {
err = {},
messages = { "6c7ac76 shift char index - 1 if not first indent (4 days ago)" },
output = { "Your branch is up to date with 'origin/lua'.", "Already on 'lua'", "remote: Enumerating objects: 11, done. \nremote: Counting objects: 9% (1/11) \rremote: Counting objects: 18% (2/11) \rremote: Counting objects: 27% (3/11) \rremote: Counting objects: 36% (4/11) \rremote: Counting objects: 45% (5/11) \rremote: Counting objects: 54% (6/11)", "remote: Counting objects: 63% (7/11) \rremote: Counting objects: 72% (8/11) \rremote: Counting objects: 81% (9/11) \rremote: Counting objects: 90% (10/11) \rremote: Counting objects: 100% (11/11) \rremote: Counting objects: 100% (11/11), done. \nremote: Compressing objects: 50% (1/2) \rremote: Compressing objects: 100% (2/2) \rremote: Compressing objects: 100% (2/2), done. \nremote: Total 5 (delta 2), reused 5 (delta 2), pack-reused 0", "From https://github.com/lukas-reineke/indent-blankline.nvim\n 3ea0d6f..6c7ac76 lua -> origin/lua", "Updating 3ea0d6f..6c7ac76\nFast-forward", "lua/indent_blankline/init.lua | 12 ++++++++++--\n 1 file changed, 10 insertions(+), 2 deletions(-)" },
revs = { "3ea0d6f", "6c7ac76" }
}
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated wbthomason/packer.nvim: {
err = {},
messages = { "fdf1851 Fix lazy loading plugins via require (#279) (2 days ago)", "b495895 Fix: Don't try to write to a nil file handle in logging (3 days ago)", "f7cb9eb Fix incorrect rtp directory concatenation (#275) (3 days ago)" },
output = { "remote: Enumerating objects: 81, done. \nremote: Counting objects: 1% (1/72) \rremote: Counting objects: 2% (2/72) \rremote: Counting objects: 4% (3/72) \rremote: Counting objects: 5% (4/72) \rremote: Counting objects: 6% (5/72) \rremote: Counting objects: 8% (6/72) \rremote: Counting objects: 9% (7/72)", "remote: Counting objects: 11% (8/72) \rremote: Counting objects: 12% (9/72) \rremote: Counting objects: 13% (10/72) \rremote: Counting objects: 15% (11/72) \rremote: Counting objects: 16% (12/72) \rremote: Counting objects: 18% (13/72) \rremote: Counting objects: 19% (14/72) \rremote: Counting objects: 20% (15/72) \rremote: Counting objects: 22% (16/72) \rremote: Counting objects: 23% (17/72) \rremote: Counting objects: 25% (18/72) \rremote: Counting objects: 26% (19/72) \rremote: Counting objects: 27% (20/72) \rremote: Counting objects: 29% (21/72) \rremote: Counting objects: 30% (22/72) \rremote: Counting objects: 31% (23/72) \rremote: Counting objects: 33% (24/72) \rremote: Counting objects: 34% (25/72) \rremote: Counting objects: 36% (26/72) \rremote: Counting objects: 37% (27/72) \rremote: Counting objects: 38% (28/72) \rremote: Counting objects: 40% (29/72) \rremote: Counting objects: 41% (30/72) \rremote: Counting objects: 43% (31/72)", "remote: Counting objects: 44% (32/72) \rremote: Counting objects: 45% (33/72) \rremote: Counting objects: 47% (34/72) \rremote: Counting objects: 48% (35/72) \rremote: Counting objects: 50% (36/72) \rremote: Counting objects: 51% (37/72) \rremote: Counting objects: 52% (38/72) \rremote: Counting objects: 54% (39/72) \rremote: Counting objects: 55% (40/72) \rremote: Counting objects: 56% (41/72) \rremote: Counting objects: 58% (42/72) \rremote: Counting objects: 59% (43/72) \rremote: Counting objects: 61% (44/72) \rremote: Counting objects: 62% (45/72) \rremote: Counting objects: 63% (46/72)", "remote: Counting objects: 65% (47/72) \rremote: Counting objects: 66% (48/72) \rremote: Counting objects: 68% (49/72) \rremote: Counting objects: 69% (50/72) \rremote: Counting objects: 70% (51/72) \rremote: Counting objects: 72% (52/72) \rremote: Counting objects: 73% (53/72) \rremote: Counting objects: 75% (54/72) \rremote: Counting objects: 76% (55/72) \rremote: Counting objects: 77% (56/72) \rremote: Counting objects: 79% (57/72) \rremote: Counting objects: 80% (58/72) \rremote: Counting objects: 81% (59/72)", "remote: Counting objects: 83% (60/72) \rremote: Counting objects: 84% (61/72) \rremote: Counting objects: 86% (62/72) \rremote: Counting objects: 87% (63/72) \rremote: Counting objects: 88% (64/72) \rremote: Counting objects: 90% (65/72) \rremote: Counting objects: 91% (66/72) \rremote: Counting objects: 93% (67/72) \rremote: Counting objects: 94% (68/72) \rremote: Counting objects: 95% (69/72) \rremote: Counting objects: 97% (70/72) \rremote: Counting objects: 98% (71/72) \rremote: Counting objects: 100% (72/72)", "remote: Counting objects: 100% (72/72), done. \nremote: Compressing objects: 7% (1/13)", "remote: Compressing objects: 15% (2/13) \rremote: Compressing objects: 23% (3/13) \rremote: Compressing objects: 30% (4/13) \rremote: Compressing objects: 38% (5/13) \rremote: Compressing objects: 46% (6/13) \rremote: Compressing objects: 53% (7/13) \rremote: Compressing objects: 61% (8/13) \rremote: Compressing objects: 69% (9/13) \rremote: Compressing objects: 76% (10/13) \rremote: Compressing objects: 84% (11/13) \rremote: Compressing objects: 92% (12/13) \rremote: Compressing objects: 100% (13/13) \rremote: Compressing objects: 100% (13/13), done. \nremote: Total 21 (delta 13), reused 13 (delta 8), pack-reused 0", "From https://github.com/wbthomason/packer.nvim\n 56c193d..fdf1851 master -> origin/master", "* [new branch] fix/escape-event-patterns -> origin/fix/escape-event-patterns", "Updating 56c193d..fdf1851\nFast-forward", "lua/packer/compile.lua | 19 ++++++++++++-------\n lua/packer/log.lua | 6 +++++-\n lua/packer/util.lua | 4 ++--\n 3 files changed, 19 insertions(+), 10 deletions(-)" },
revs = { "56c193d", "fdf1851" }
}
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated kyazdani42/nvim-tree.lua: {
err = {},
messages = { "bbb8d60 add event API (#265) (2 days ago)", "b48274c fix(file creation): avoid file overwrite and enable creating file on root node (#272) (2 days ago)\n3350e4e Use platform path separator when setting tree index. (#269) (3 days ago)" },
output = { "remote: Enumerating objects: 68, done. \nremote: Counting objects: 1% (1/61) \rremote: Counting objects: 3% (2/61) \rremote: Counting objects: 4% (3/61) \rremote: Counting objects: 6% (4/61) \rremote: Counting objects: 8% (5/61) \rremote: Counting objects: 9% (6/61) \rremote: Counting objects: 11% (7/61) \rremote: Counting objects: 13% (8/61) \rremote: Counting objects: 14% (9/61) \rremote: Counting objects: 16% (10/61) \rremote: Counting objects: 18% (11/61) \rremote: Counting objects: 19% (12/61) \rremote: Counting objects: 21% (13/61) \rremote: Counting objects: 22% (14/61) \rremote: Counting objects: 24% (15/61) \rremote: Counting objects: 26% (16/61) \rremote: Counting objects: 27% (17/61) \rremote: Counting objects: 29% (18/61) \rremote: Counting objects: 31% (19/61) \rremote: Counting objects: 32% (20/61) \rremote: Counting objects: 34% (21/61) \rremote: Counting objects: 36% (22/61) \rremote: Counting objects: 37% (23/61) \rremote: Counting objects: 39% (24/61) \rremote: Counting objects: 40% (25/61) \rremote: Counting objects: 42% (26/61) \rremote: Counting objects: 44% (27/61) \rremote: Counting objects: 45% (28/61) \rremote: Counting objects: 47% (29/61) \rremote: Counting objects: 49% (30/61) \rremote: Counting objects: 50% (31/61) \rremote: Counting objects: 52% (32/61) \rremote: Counting objects: 54% (33/61) \rremote: Counting objects: 55% (34/61) \rremote: Counting objects: 57% (35/61) \rremote: Counting objects: 59% (36/61) \rremote: Counting objects: 60% (37/61) \rremote: Counting objects: 62% (38/61) \rremote: Counting objects: 63% (39/61) \rremote: Counting objects: 65% (40/61) \rremote: Counting objects: 67% (41/61) \rremote: Counting objects: 68% (42/61) \rremote: Counting objects: 70% (43/61) \rremote: Counting objects: 72% (44/61) \rremote: Counting objects: 73% (45/61) \rremote: Counting objects: 75% (46/61) \rremote: Counting objects: 77% (47/61) \rremote: Counting objects: 78% (48/61) \rremote: Counting objects: 80% (49/61) \rremote: Counting objects: 81% (50/61) \rremote: Counting objects: 83% (51/61) \rremote: Counting objects: 85% (52/61) \rremote: Counting objects: 86% (53/61) \rremote: Counting objects: 88% (54/61) \rremote: Counting objects: 90% (55/61) \rremote: Counting objects: 91% (56/61) \rremote: Counting objects: 93% (57/61) \rremote: Counting objects: 95% (58/61) \rremote: Counting objects: 96% (59/61) \rremote: Counting objects: 98% (60/61) \rremote: Counting objects: 100% (61/61) \rremote: Counting objects: 100% (61/61), done.", "remote: Compressing objects: 5% (1/18) \rremote: Compressing objects: 11% (2/18) \rremote: Compressing objects: 16% (3/18) \rremote: Compressing objects: 22% (4/18) \rremote: Compressing objects: 27% (5/18) \rremote: Compressing objects: 33% (6/18) \rremote: Compressing objects: 38% (7/18) \rremote: Compressing objects: 44% (8/18) \rremote: Compressing objects: 50% (9/18) \rremote: Compressing objects: 55% (10/18) \rremote: Compressing objects: 61% (11/18) \rremote: Compressing objects: 66% (12/18) \rremote: Compressing objects: 72% (13/18) \rremote: Compressing objects: 77% (14/18) \rremote: Compressing objects: 83% (15/18) \rremote: Compressing objects: 88% (16/18) \rremote: Compressing objects: 94% (17/18) \rremote: Compressing objects: 100% (18/18) \rremote: Compressing objects: 100% (18/18), done.", "remote: Total 23 (delta 12), reused 11 (delta 5), pack-reused 0", "From https://github.com/kyazdani42/nvim-tree.lua\n de93da7..bbb8d60 master -> origin/master", "* [new branch] fix/file-creation -> origin/fix/file-creation", "Updating de93da7..bbb8d60\nFast-forward", ".editorconfig | 9 +++++\n doc/nvim-tree-lua.txt | 74 +++++++++++++++++++++++++++++++++++++-\n lua/nvim-tree/events.lua | 94 ++++++++++++++++++++++++++++++++++++++++++++++++\n lua/nvim-tree/fs.lua | 20 ++++++++++-\n lua/nvim-tree/lib.lua | 2 +-\n 5 files changed, 196 insertions(+), 3 deletions(-)\n create mode 100644 .editorconfig\n create mode 100644 lua/nvim-tree/events.lua" },
revs = { "de93da7", "bbb8d60" }
}
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated lewis6991/gitsigns.nvim: {
err = {},
messages = { "5be4faa Preview: don't set winhl if there is no border (2 days ago)\nf66a368 Implemented `stage_buffer` and `reset_buffer_index` (2 days ago)" },
output = { "remote: Enumerating objects: 112, done. \nremote: Counting objects: 0% (1/103) \rremote: Counting objects: 1% (2/103) \rremote: Counting objects: 2% (3/103) \rremote: Counting objects: 3% (4/103) \rremote: Counting objects: 4% (5/103) \rremote: Counting objects: 5% (6/103) \rremote: Counting objects: 6% (7/103) \rremote: Counting objects: 7% (8/103) \rremote: Counting objects: 8% (9/103) \rremote: Counting objects: 9% (10/103) \rremote: Counting objects: 10% (11/103) \rremote: Counting objects: 11% (12/103) \rremote: Counting objects: 12% (13/103) \rremote: Counting objects: 13% (14/103) \rremote: Counting objects: 14% (15/103) \rremote: Counting objects: 15% (16/103) \rremote: Counting objects: 16% (17/103) \rremote: Counting objects: 17% (18/103) \rremote: Counting objects: 18% (19/103) \rremote: Counting objects: 19% (20/103) \rremote: Counting objects: 20% (21/103) \rremote: Counting objects: 21% (22/103) \rremote: Counting objects: 22% (23/103) \rremote: Counting objects: 23% (24/103) \rremote: Counting objects: 24% (25/103) \rremote: Counting objects: 25% (26/103) \rremote: Counting objects: 26% (27/103) \rremote: Counting objects: 27% (28/103) \rremote: Counting objects: 28% (29/103) \rremote: Counting objects: 29% (30/103) \rremote: Counting objects: 30% (31/103) \rremote: Counting objects: 31% (32/103) \rremote: Counting objects: 32% (33/103) \rremote: Counting objects: 33% (34/103) \rremote: Counting objects: 34% (36/103) \rremote: Counting objects: 35% (37/103)", "remote: Counting objects: 36% (38/103) \rremote: Counting objects: 37% (39/103) \rremote: Counting objects: 38% (40/103) \rremote: Counting objects: 39% (41/103) \rremote: Counting objects: 40% (42/103) \rremote: Counting objects: 41% (43/103) \rremote: Counting objects: 42% (44/103) \rremote: Counting objects: 43% (45/103) \rremote: Counting objects: 44% (46/103) \rremote: Counting objects: 45% (47/103) \rremote: Counting objects: 46% (48/103) \rremote: Counting objects: 47% (49/103) \rremote: Counting objects: 48% (50/103) \rremote: Counting objects: 49% (51/103) \rremote: Counting objects: 50% (52/103) \rremote: Counting objects: 51% (53/103) \rremote: Counting objects: 52% (54/103) \rremote: Counting objects: 53% (55/103) \rremote: Counting objects: 54% (56/103) \rremote: Counting objects: 55% (57/103) \rremote: Counting objects: 56% (58/103) \rremote: Counting objects: 57% (59/103) \rremote: Counting objects: 58% (60/103) \rremote: Counting objects: 59% (61/103) \rremote: Counting objects: 60% (62/103) \rremote: Counting objects: 61% (63/103) \rremote: Counting objects: 62% (64/103) \rremote: Counting objects: 63% (65/103) \rremote: Counting objects: 64% (66/103) \rremote: Counting objects: 65% (67/103) \rremote: Counting objects: 66% (68/103) \rremote: Counting objects: 67% (70/103) \rremote: Counting objects: 68% (71/103) \rremote: Counting objects: 69% (72/103) \rremote: Counting objects: 70% (73/103) \rremote: Counting objects: 71% (74/103) \rremote: Counting objects: 72% (75/103) \rremote: Counting objects: 73% (76/103) \rremote: Counting objects: 74% (77/103) \rremote: Counting objects: 75% (78/103) \rremote: Counting objects: 76% (79/103) \rremote: Counting objects: 77% (80/103) \rremote: Counting objects: 78% (81/103) \rremote: Counting objects: 79% (82/103) \rremote: Counting objects: 80% (83/103) \rremote: Counting objects: 81% (84/103) \rremote: Counting objects: 82% (85/103) \rremote: Counting objects: 83% (86/103) \rremote: Counting objects: 84% (87/103) \rremote: Counting objects: 85% (88/103) \rremote: Counting objects: 86% (89/103) \rremote: Counting objects: 87% (90/103) \rremote: Counting objects: 88% (91/103) \rremote: Counting objects: 89% (92/103) \rremote: Counting objects: 90% (93/103) \rremote: Counting objects: 91% (94/103) \rremote: Counting objects: 92% (95/103) \rremote: Counting objects: 93% (96/103) \rremote: Counting objects: 94% (97/103) \rremote: Counting objects: 95% (98/103) \rremote: Counting objects: 96% (99/103) \rremote: Counting objects: 97% (100/103) \rremote: Counting objects: 98% (101/103) \rremote: Counting objects: 99% (102/103) \rremote: Counting objects: 100% (103/103) \rremote: Counting objects: 100% (103/103), done. \nremote: Compressing objects: 4% (1/21)", "remote: Compressing objects: 9% (2/21) \rremote: Compressing objects: 14% (3/21) \rremote: Compressing objects: 19% (4/21) \rremote: Compressing objects: 23% (5/21) \rremote: Compressing objects: 28% (6/21)", "remote: Compressing objects: 33% (7/21)", "remote: Compressing objects: 38% (8/21) \rremote: Compressing objects: 42% (9/21) \rremote: Compressing objects: 47% (10/21) \rremote: Compressing objects: 52% (11/21) \rremote: Compressing objects: 57% (12/21)", "remote: Compressing objects: 61% (13/21) \rremote: Compressing objects: 66% (14/21) \rremote: Compressing objects: 71% (15/21) \rremote: Compressing objects: 76% (16/21) \rremote: Compressing objects: 80% (17/21) \rremote: Compressing objects: 85% (18/21) \rremote: Compressing objects: 90% (19/21) \rremote: Compressing objects: 95% (20/21) \rremote: Compressing objects: 100% (21/21)", "remote: Compressing objects: 100% (21/21), done.", "remote: Total 44 (delta 31), reused 32 (delta 19), pack-reused 0", "From https://github.com/lewis6991/gitsigns.nvim\n 3d33a08..5be4faa main -> origin/main\n * [new branch] blame -> origin/blame", "Updating 3d33a08..5be4faa\nFast-forward", "doc/gitsigns.txt | 10 ++++\n lua/gitsigns.lua | 102 +++++++++++++++++++++++++++++------\n lua/gitsigns/config.lua | 2 +\n lua/gitsigns/git.lua | 23 ++++++++\n lua/gitsigns/hunks.lua | 57 +++++++++++---------\n lua/gitsigns/popup.lua | 4 +-\n lua/gitsigns/status.lua | 11 ++++\n teal/gitsigns.tl | 140 ++++++++++++++++++++++++++++++++++++------------\n teal/gitsigns/config.tl | 2 +\n teal/gitsigns/git.tl | 23 ++++++++\n teal/gitsigns/hunks.tl | 61 +++++++++++----------\n teal/gitsigns/popup.tl | 4 +-\n teal/gitsigns/status.tl | 11 ++++\n test/gitsigns_spec.lua | 52 +++++++++++++++++-\n 14 files changed, 393 insertions(+), 109 deletions(-)" },
revs = { "3d33a08", "5be4faa" }
}
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated akinsho/nvim-bufferline.lua: {
err = {},
messages = { "224f262 fix(highlights): wrap api call in pcall (27 hours ago)\n6ff0649 chore: minor formatting tweaks and type docs (31 hours ago)", "eb2a88a Adding named color support in get_hex (#76) (31 hours ago)\n3b7fc8f Adding diagnostic shading separate from component shading (#72) (2 days ago)" },
output = { "remote: Enumerating objects: 59, done. \nremote: Counting objects: 1% (1/55) \rremote: Counting objects: 3% (2/55) \rremote: Counting objects: 5% (3/55) \rremote: Counting objects: 7% (4/55) \rremote: Counting objects: 9% (5/55) \rremote: Counting objects: 10% (6/55) \rremote: Counting objects: 12% (7/55) \rremote: Counting objects: 14% (8/55) \rremote: Counting objects: 16% (9/55) \rremote: Counting objects: 18% (10/55) \rremote: Counting objects: 20% (11/55) \rremote: Counting objects: 21% (12/55) \rremote: Counting objects: 23% (13/55) \rremote: Counting objects: 25% (14/55) \rremote: Counting objects: 27% (15/55) \rremote: Counting objects: 29% (16/55) \rremote: Counting objects: 30% (17/55) \rremote: Counting objects: 32% (18/55) \rremote: Counting objects: 34% (19/55) \rremote: Counting objects: 36% (20/55) \rremote: Counting objects: 38% (21/55) \rremote: Counting objects: 40% (22/55) \rremote: Counting objects: 41% (23/55) \rremote: Counting objects: 43% (24/55) \rremote: Counting objects: 45% (25/55) \rremote: Counting objects: 47% (26/55) \rremote: Counting objects: 49% (27/55) \rremote: Counting objects: 50% (28/55) \rremote: Counting objects: 52% (29/55) \rremote: Counting objects: 54% (30/55) \rremote: Counting objects: 56% (31/55) \rremote: Counting objects: 58% (32/55) \rremote: Counting objects: 60% (33/55) \rremote: Counting objects: 61% (34/55) \rremote: Counting objects: 63% (35/55) \rremote: Counting objects: 65% (36/55) \rremote: Counting objects: 67% (37/55) \rremote: Counting objects: 69% (38/55) \rremote: Counting objects: 70% (39/55) \rremote: Counting objects: 72% (40/55) \rremote: Counting objects: 74% (41/55) \rremote: Counting objects: 76% (42/55) \rremote: Counting objects: 78% (43/55) \rremote: Counting objects: 80% (44/55) \rremote: Counting objects: 81% (45/55) \rremote: Counting objects: 83% (46/55) \rremote: Counting objects: 85% (47/55) \rremote: Counting objects: 87% (48/55) \rremote: Counting objects: 89% (49/55) \rremote: Counting objects: 90% (50/55) \rremote: Counting objects: 92% (51/55) \rremote: Counting objects: 94% (52/55) \rremote: Counting objects: 96% (53/55) \rremote: Counting objects: 98% (54/55) \rremote: Counting objects: 100% (55/55) \rremote: Counting objects: 100% (55/55), done. \nremote: Compressing objects: 5% (1/17) \rremote: Compressing objects: 11% (2/17) \rremote: Compressing objects: 17% (3/17) \rremote: Compressing objects: 23% (4/17) \rremote: Compressing objects: 29% (5/17)", "remote: Compressing objects: 35% (6/17) \rremote: Compressing objects: 41% (7/17) \rremote: Compressing objects: 47% (8/17) \rremote: Compressing objects: 52% (9/17) \rremote: Compressing objects: 58% (10/17) \rremote: Compressing objects: 64% (11/17) \rremote: Compressing objects: 70% (12/17) \rremote: Compressing objects: 76% (13/17) \rremote: Compressing objects: 82% (14/17) \rremote: Compressing objects: 88% (15/17) \rremote: Compressing objects: 94% (16/17) \rremote: Compressing objects: 100% (17/17) \rremote: Compressing objects: 100% (17/17), done.", "remote: Total 28 (delta 19), reused 17 (delta 10), pack-reused 0", "From https://github.com/akinsho/nvim-bufferline.lua\n 2043d25..224f262 master -> origin/master", "Updating 2043d25..224f262\nFast-forward", "doc/bufferline-lua.txt | 115 ++++++++++++++++++++++++++++++++---------\n lua/bufferline.lua | 19 +++++--\n lua/bufferline/colors.lua | 36 +++++++++++--\n lua/bufferline/config.lua | 83 ++++++++++++++++++++++++++---\n lua/bufferline/diagnostics.lua | 6 ++-\n 5 files changed, 218 insertions(+), 41 deletions(-)" },
revs = { "2043d25", "224f262" }
}
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated nvim-lua/plenary.nvim: {
err = {},
messages = { "d0d291f fix: shebang detection for bash (#128) (5 hours ago)\n304c5b9 fix: defer expanding cwd until execution time (20 hours ago)\nb6eb19f fix: recursive rm deletes hidden dirs too (#125) (2 days ago)\n720c304 fix: Schedule the call to writing an error (2 days ago)" },
output = { "remote: Enumerating objects: 161, done. \nremote: Counting objects: 0% (1/145) \rremote: Counting objects: 1% (2/145) \rremote: Counting objects: 2% (3/145) \rremote: Counting objects: 3% (5/145) \rremote: Counting objects: 4% (6/145) \rremote: Counting objects: 5% (8/145) \rremote: Counting objects: 6% (9/145) \rremote: Counting objects: 7% (11/145) \rremote: Counting objects: 8% (12/145)", "remote: Counting objects: 9% (14/145) \rremote: Counting objects: 10% (15/145) \rremote: Counting objects: 11% (16/145) \rremote: Counting objects: 12% (18/145) \rremote: Counting objects: 13% (19/145) \rremote: Counting objects: 14% (21/145) \rremote: Counting objects: 15% (22/145) \rremote: Counting objects: 16% (24/145) \rremote: Counting objects: 17% (25/145) \rremote: Counting objects: 18% (27/145) \rremote: Counting objects: 19% (28/145) \rremote: Counting objects: 20% (29/145) \rremote: Counting objects: 21% (31/145) \rremote: Counting objects: 22% (32/145) \rremote: Counting objects: 23% (34/145) \rremote: Counting objects: 24% (35/145) \rremote: Counting objects: 25% (37/145) \rremote: Counting objects: 26% (38/145) \rremote: Counting objects: 27% (40/145) \rremote: Counting objects: 28% (41/145) \rremote: Counting objects: 29% (43/145) \rremote: Counting objects: 30% (44/145) \rremote: Counting objects: 31% (45/145) \rremote: Counting objects: 32% (47/145) \rremote: Counting objects: 33% (48/145) \rremote: Counting objects: 34% (50/145) \rremote: Counting objects: 35% (51/145) \rremote: Counting objects: 36% (53/145) \rremote: Counting objects: 37% (54/145) \rremote: Counting objects: 38% (56/145) \rremote: Counting objects: 39% (57/145) \rremote: Counting objects: 40% (58/145) \rremote: Counting objects: 41% (60/145) \rremote: Counting objects: 42% (61/145)", "remote: Counting objects: 43% (63/145) \rremote: Counting objects: 44% (64/145) \rremote: Counting objects: 45% (66/145) \rremote: Counting objects: 46% (67/145) \rremote: Counting objects: 47% (69/145) \rremote: Counting objects: 48% (70/145) \rremote: Counting objects: 49% (72/145) \rremote: Counting objects: 50% (73/145) \rremote: Counting objects: 51% (74/145) \rremote: Counting objects: 52% (76/145) \rremote: Counting objects: 53% (77/145) \rremote: Counting objects: 54% (79/145) \rremote: Counting objects: 55% (80/145) \rremote: Counting objects: 56% (82/145) \rremote: Counting objects: 57% (83/145) \rremote: Counting objects: 58% (85/145) \rremote: Counting objects: 59% (86/145) \rremote: Counting objects: 60% (87/145) \rremote: Counting objects: 61% (89/145) \rremote: Counting objects: 62% (90/145) \rremote: Counting objects: 63% (92/145) \rremote: Counting objects: 64% (93/145) \rremote: Counting objects: 65% (95/145) \rremote: Counting objects: 66% (96/145) \rremote: Counting objects: 67% (98/145)", "remote: Counting objects: 68% (99/145) \rremote: Counting objects: 69% (101/145) \rremote: Counting objects: 70% (102/145) \rremote: Counting objects: 71% (103/145) \rremote: Counting objects: 72% (105/145) \rremote: Counting objects: 73% (106/145) \rremote: Counting objects: 74% (108/145) \rremote: Counting objects: 75% (109/145) \rremote: Counting objects: 76% (111/145) \rremote: Counting objects: 77% (112/145) \rremote: Counting objects: 78% (114/145) \rremote: Counting objects: 79% (115/145) \rremote: Counting objects: 80% (116/145) \rremote: Counting objects: 81% (118/145) \rremote: Counting objects: 82% (119/145) \rremote: Counting objects: 83% (121/145) \rremote: Counting objects: 84% (122/145) \rremote: Counting objects: 85% (124/145) \rremote: Counting objects: 86% (125/145) \rremote: Counting objects: 87% (127/145) \rremote: Counting objects: 88% (128/145) \rremote: Counting objects: 89% (130/145) \rremote: Counting objects: 90% (131/145) \rremote: Counting objects: 91% (132/145) \rremote: Counting objects: 92% (134/145) \rremote: Counting objects: 93% (135/145) \rremote: Counting objects: 94% (137/145)", "remote: Counting objects: 95% (138/145) \rremote: Counting objects: 96% (140/145) \rremote: Counting objects: 97% (141/145) \rremote: Counting objects: 98% (143/145) \rremote: Counting objects: 99% (144/145) \rremote: Counting objects: 100% (145/145) \rremote: Counting objects: 100% (145/145), done. \nremote: Compressing objects: 2% (1/37) \rremote: Compressing objects: 5% (2/37) \rremote: Compressing objects: 8% (3/37) \rremote: Compressing objects: 10% (4/37)", "remote: Compressing objects: 13% (5/37) \rremote: Compressing objects: 16% (6/37) \rremote: Compressing objects: 18% (7/37) \rremote: Compressing objects: 21% (8/37) \rremote: Compressing objects: 24% (9/37) \rremote: Compressing objects: 27% (10/37) \rremote: Compressing objects: 29% (11/37) \rremote: Compressing objects: 32% (12/37) \rremote: Compressing objects: 35% (13/37) \rremote: Compressing objects: 37% (14/37) \rremote: Compressing objects: 40% (15/37)", "remote: Compressing objects: 43% (16/37) \rremote: Compressing objects: 45% (17/37) \rremote: Compressing objects: 48% (18/37) \rremote: Compressing objects: 51% (19/37) \rremote: Compressing objects: 54% (20/37) \rremote: Compressing objects: 56% (21/37) \rremote: Compressing objects: 59% (22/37) \rremote: Compressing objects: 62% (23/37) \rremote: Compressing objects: 64% (24/37) \rremote: Compressing objects: 67% (25/37) \rremote: Compressing objects: 70% (26/37)", "remote: Compressing objects: 72% (27/37) \rremote: Compressing objects: 75% (28/37) \rremote: Compressing objects: 78% (29/37) \rremote: Compressing objects: 81% (30/37) \rremote: Compressing objects: 83% (31/37) \rremote: Compressing objects: 86% (32/37) \rremote: Compressing objects: 89% (33/37) \rremote: Compressing objects: 91% (34/37) \rremote: Compressing objects: 94% (35/37) \rremote: Compressing objects: 97% (36/37) \rremote: Compressing objects: 100% (37/37) \rremote: Compressing objects: 100% (37/37), done.", "remote: Total 67 (delta 37), reused 55 (delta 28), pack-reused 0", "From https://github.com/nvim-lua/plenary.nvim\n 8467790..d0d291f master -> origin/master", "* [new branch] tj/job_futures -> origin/tj/job_futures", "Updating 8467790..d0d291f\nFast-forward", "data/plenary/filetypes/builtin.lua | 2 +-\n lua/plenary/job.lua | 13 +++++++++----\n lua/plenary/path.lua | 2 +-\n tests/plenary/filetype_spec.lua | 2 +-\n tests/plenary/path_spec.lua | 4 ++++\n 5 files changed, 16 insertions(+), 7 deletions(-)" },
revs = { "8467790", "d0d291f" }
}
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated nvim-treesitter/nvim-treesitter: {
err = {},
messages = { '1f00ecd Update lockfile.json (8 hours ago)\n5f53f55 Fix usage of string.sub (#1164) (16 hours ago)\nfe5fd3d Update lockfile.json (24 hours ago)\n20e4566 Update lockfile.json (#1156) (25 hours ago)\nf8314a4 highlights(go): Highlight const_declaration (29 hours ago)\nbf0ae40 fix(health): let CC check behave like in real installation (29 hours ago)\n175c8c3 Update lockfile.json (30 hours ago)\n6df2368 Update highlights.scm (2 days ago)\n826683b Fix: allow empty path in utils.get_at_path (2 days ago)\n06c9ef8 TSModuleInfo: change doc (2 days ago)\nfc5e37f TSModuleInfo: make new buffer work with given argument (2 days ago)\nc64c8a4 TSModuleInfo: use custom buffer (2 days ago)\n099b921 injections(js): add regex highlighting (2 days ago)\n853caf5 highlights(rust): Add operator "?" (2 days ago)' },
output = { "remote: Enumerating objects: 97, done. \nremote: Counting objects: 1% (1/86)", "remote: Counting objects: 2% (2/86) \rremote: Counting objects: 3% (3/86) \rremote: Counting objects: 4% (4/86) \rremote: Counting objects: 5% (5/86) \rremote: Counting objects: 6% (6/86) \rremote: Counting objects: 8% (7/86) \rremote: Counting objects: 9% (8/86) \rremote: Counting objects: 10% (9/86) \rremote: Counting objects: 11% (10/86) \rremote: Counting objects: 12% (11/86) \rremote: Counting objects: 13% (12/86) \rremote: Counting objects: 15% (13/86) \rremote: Counting objects: 16% (14/86) \rremote: Counting objects: 17% (15/86) \rremote: Counting objects: 18% (16/86) \rremote: Counting objects: 19% (17/86) \rremote: Counting objects: 20% (18/86) \rremote: Counting objects: 22% (19/86) \rremote: Counting objects: 23% (20/86) \rremote: Counting objects: 24% (21/86) \rremote: Counting objects: 25% (22/86) \rremote: Counting objects: 26% (23/86) \rremote: Counting objects: 27% (24/86) \rremote: Counting objects: 29% (25/86) \rremote: Counting objects: 30% (26/86) \rremote: Counting objects: 31% (27/86) \rremote: Counting objects: 32% (28/86)", "remote: Counting objects: 33% (29/86) \rremote: Counting objects: 34% (30/86) \rremote: Counting objects: 36% (31/86) \rremote: Counting objects: 37% (32/86) \rremote: Counting objects: 38% (33/86) \rremote: Counting objects: 39% (34/86) \rremote: Counting objects: 40% (35/86) \rremote: Counting objects: 41% (36/86) \rremote: Counting objects: 43% (37/86) \rremote: Counting objects: 44% (38/86) \rremote: Counting objects: 45% (39/86) \rremote: Counting objects: 46% (40/86)", "remote: Counting objects: 47% (41/86) \rremote: Counting objects: 48% (42/86) \rremote: Counting objects: 50% (43/86) \rremote: Counting objects: 51% (44/86) \rremote: Counting objects: 52% (45/86) \rremote: Counting objects: 53% (46/86) \rremote: Counting objects: 54% (47/86) \rremote: Counting objects: 55% (48/86) \rremote: Counting objects: 56% (49/86)", "remote: Counting objects: 58% (50/86) \rremote: Counting objects: 59% (51/86) \rremote: Counting objects: 60% (52/86) \rremote: Counting objects: 61% (53/86) \rremote: Counting objects: 62% (54/86) \rremote: Counting objects: 63% (55/86) \rremote: Counting objects: 65% (56/86) \rremote: Counting objects: 66% (57/86) \rremote: Counting objects: 67% (58/86) \rremote: Counting objects: 68% (59/86) \rremote: Counting objects: 69% (60/86) \rremote: Counting objects: 70% (61/86) \rremote: Counting objects: 72% (62/86) \rremote: Counting objects: 73% (63/86) \rremote: Counting objects: 74% (64/86) \rremote: Counting objects: 75% (65/86) \rremote: Counting objects: 76% (66/86) \rremote: Counting objects: 77% (67/86) \rremote: Counting objects: 79% (68/86) \rremote: Counting objects: 80% (69/86) \rremote: Counting objects: 81% (70/86) \rremote: Counting objects: 82% (71/86) \rremote: Counting objects: 83% (72/86) \rremote: Counting objects: 84% (73/86) \rremote: Counting objects: 86% (74/86) \rremote: Counting objects: 87% (75/86) \rremote: Counting objects: 88% (76/86) \rremote: Counting objects: 89% (77/86) \rremote: Counting objects: 90% (78/86) \rremote: Counting objects: 91% (79/86) \rremote: Counting objects: 93% (80/86) \rremote: Counting objects: 94% (81/86) \rremote: Counting objects: 95% (82/86) \rremote: Counting objects: 96% (83/86) \rremote: Counting objects: 97% (84/86) \rremote: Counting objects: 98% (85/86)", "remote: Counting objects: 100% (86/86) \rremote: Counting objects: 100% (86/86), done. \nremote: Compressing objects: 2% (1/37) \rremote: Compressing objects: 5% (2/37) \rremote: Compressing objects: 8% (3/37) \rremote: Compressing objects: 10% (4/37) \rremote: Compressing objects: 13% (5/37) \rremote: Compressing objects: 16% (6/37) \rremote: Compressing objects: 18% (7/37)", "remote: Compressing objects: 21% (8/37) \rremote: Compressing objects: 24% (9/37) \rremote: Compressing objects: 27% (10/37) \rremote: Compressing objects: 29% (11/37) \rremote: Compressing objects: 32% (12/37) \rremote: Compressing objects: 35% (13/37) \rremote: Compressing objects: 37% (14/37) \rremote: Compressing objects: 40% (15/37) \rremote: Compressing objects: 43% (16/37) \rremote: Compressing objects: 45% (17/37) \rremote: Compressing objects: 48% (18/37) \rremote: Compressing objects: 51% (19/37) \rremote: Compressing objects: 54% (20/37) \rremote: Compressing objects: 56% (21/37) \rremote: Compressing objects: 59% (22/37) \rremote: Compressing objects: 62% (23/37) \rremote: Compressing objects: 64% (24/37)", "remote: Compressing objects: 67% (25/37) \rremote: Compressing objects: 70% (26/37) \rremote: Compressing objects: 72% (27/37) \rremote: Compressing objects: 75% (28/37) \rremote: Compressing objects: 78% (29/37) \rremote: Compressing objects: 81% (30/37) \rremote: Compressing objects: 83% (31/37) \rremote: Compressing objects: 86% (32/37) \rremote: Compressing objects: 89% (33/37) \rremote: Compressing objects: 91% (34/37) \rremote: Compressing objects: 94% (35/37) \rremote: Compressing objects: 97% (36/37) \rremote: Compressing objects: 100% (37/37) \rremote: Compressing objects: 100% (37/37), done.", "remote: Total 63 (delta 40), reused 35 (delta 24), pack-reused 0", "From https://github.com/nvim-treesitter/nvim-treesitter\n 11e1db3..1f00ecd master -> origin/master", "* [new branch] update-lockfile-pr -> origin/update-lockfile-pr", "Updating 11e1db3..1f00ecd\nFast-forward", "doc/nvim-treesitter.txt | 11 +++-\n lockfile.json | 6 +-\n lua/nvim-treesitter/health.lua | 10 +++-\n lua/nvim-treesitter/info.lua | 126 +++++++++++++++++++++++++++++------------\n lua/nvim-treesitter/query.lua | 11 ++--\n lua/nvim-treesitter/utils.lua | 1 +\n queries/ecma/injections.scm | 2 +\n queries/glimmer/highlights.scm | 14 ++---\n queries/go/highlights.scm | 3 +\n queries/go/locals.scm | 4 ++\n queries/rust/highlights.scm | 1 +\n 11 files changed, 131 insertions(+), 58 deletions(-)" },
revs = { "11e1db3", "1f00ecd" }
}
[DEBUG jue 08 abr 2021 10:57:40] ...m/site/pack/packer/opt/packer.nvim/lua/packer/update.lua:80: Updated glepnir/galaxyline.nvim: {
err = {},
messages = { "505bd8a Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim (3 days ago)", "f5e38ab use highlight! fix #131 (3 days ago)\n19488f5 feat: if short line list empty every window show same line (3 weeks ago)\n168fe13 fix get clients bug (3 weeks ago)", "6a88f1b update doc (4 weeks ago)\na6c2cbc use vim.api instead of vim.fn (4 weeks ago)\n70445aa update preview image (4 weeks ago)\n1914252 update eviline for new feat (5 weeks ago)", "3aced7d Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim (5 weeks ago)\n1dd8c64 feat: support set statusline middle section close #70 (5 weeks ago)\ndd1cd30 Merge pull request #109 from kunzaatko/patch-1 (5 weeks ago)", "ce691e6 Fix: lock insufficient spacing (5 weeks ago)", "be54ab9 improve a bit (5 weeks ago)\n760065e support custom msg of get lsp client (5 weeks ago)", "82720e1 improve a bit (5 weeks ago)\n0a50484 add check_active_lsp in condition (5 weeks ago)\ne48c447 fix typo (5 weeks ago)", "90207f9 update (5 weeks ago)\n0e13d96 update (5 weeks ago)\n2ec4e0e update (5 weeks ago)\nb68fac0 fix typo (5 weeks ago)", "f6a5889 Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim (5 weeks ago)\ned8016d feat: add get lsp client of buffer (5 weeks ago)\n916c00d Merge pull request #106 from wren/inactive-split-105 (7 weeks ago)", "584fe67 Make sure short_line is set (7 weeks ago)\n725031e async load section table (7 weeks ago)\nd65db0f Merge pull request #104 from kyoh86/patch-1 (7 weeks ago)", "cb26a07 neovim 5.0? (7 weeks ago)\n45e9637 Merge pull request #103 from CantoroMC/patch-1 (7 weeks ago)\nc312e07 Update provider_extensions.lua (7 weeks ago)", "daf3745 Update common.lua (#102) (7 weeks ago)\nbde71bf Update common.lua (#101) (7 weeks ago)\neace2ca add benchmark (7 weeks ago)", "ab15714 update example eviline.lua (7 weeks ago)\n56be669 improve behavior (7 weeks ago)", "2b48d38 feat: add white space support (8 weeks ago)", "e30c355 Fix relative path for git dir (#98) (8 weeks ago)\neddfeb7 Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim (9 weeks ago)\n9bfbfe3 fix bug of theme close #95 (9 weeks ago)\n97ae216 Fix gitdir and use getcwd (#94) (9 weeks ago)", "90271da improve color code (9 weeks ago)\nee34f7f rewrite colorscheme (#91) (9 weeks ago)", "27f1d2d rewrite async (9 weeks ago)\n85156c9 update doc (9 weeks ago)", "15d3fb6 rename function (9 weeks ago)\n7eac180 update (9 weeks ago)\nf606edd async load providers reduce startup time (9 weeks ago)", "a0b9ac7 async load providers reduce startup time (9 weeks ago)\nf89cef8 update (9 weeks ago)\nfbb635c remove unused variable (9 weeks ago)", "b01a5a6 remove unused function (9 weeks ago)\nfd3f069 fix(colors): check for empty string in fg/bg (#87) (10 weeks ago)", "6197def Add icon color from devicons (#82) (10 weeks ago)\nd49b8b1 check value is nil (2 months ago)\n22791e9 fix bug of example close #80 (2 months ago)", "64d6b8e Update README.md (#77) (3 months ago)\ned9104a add space in diagnostic count (3 months ago)", "07d967b feat: Added ability for highlight to be link. (#75) (3 months ago)\naa0cd72 Fix gitsigns diff matching (#73) (3 months ago)\n85ebd4a Fix LSP Warning, Hint and Info (#71) (3 months ago)\n2e03387 update pic show (3 months ago)", "5ce0360 fix colors messed up on colorscheme change/resource vimrc (#69) (3 months ago)\n7d335ed update exmaple/eviline (3 months ago)\n4a27bff update example (3 months ago)\n5f3045c covert file encode to upper (3 months ago)", "6b3e83f Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim (3 months ago)\n7fd66f5 update doc (3 months ago)\n4825da4 fix startup error when WebDevIconsGetFileTypeSymbol does not exist (#66) (3 months ago)", "f580382 Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim (3 months ago)\n49fd463 add TermOpen in autocmd and do not check git in terminal (3 months ago)\n789a036 clean up (3 months ago)\n7ef7396 Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim (3 months ago)", "96fd1ca remove viml tbl_empty (3 months ago)\n71de84a Update README.md (#62) (3 months ago)\n015c759 Update readme and message shown to user. (#61) (3 months ago)", "a1f1d67 cast to number for comparison with 0 (#60) (3 months ago)\neb53575 update vcs for gitsigns (3 months ago)\n9fdebfb rewrite get buffer number (3 months ago)", "2064a39 Add requirement for neovim version (#53) (3 months ago)\nbf7ee64 set metatable of _switch (4 months ago)\nbf13532 reduce code depth (4 months ago)", "6214529 update doc for example (4 months ago)\n528bb65 rewrite git_root (4 months ago)\n9127994 Fix bug in git submodule branch resolution (#46) (4 months ago)", '392ca86 Revert "Fix bug in git submodule branch resolution (#43)" (#45) (4 months ago)\n0ae8a5a Fix bug in git submodule branch resolution (#43) (4 months ago)\n78495aa add init_colorscheme function (5 months ago)', "1ca9781 update for new change support symlinks file (5 months ago)\n5b337ca check file is symlink and get real path (5 months ago)\n98d3e58 Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim into main (5 months ago)", "94324d6 check file is symlink and get real path (5 months ago)\nef84b78 Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim into main (5 months ago)\nb7afada add vue icon (5 months ago)", "4eab539 Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim into main (5 months ago)\nded730a add disable and rewrite augroup (5 months ago)\n5066aa9 Fix inactive LSP causing errors (#37) (5 months ago)", "dcb64a6 use get_active_clients function (5 months ago)\nac5e0ee fix params error (5 months ago)\n228a2ee rewrite nvim-lsp diagnostic check the neovim #12655 (5 months ago)\nd439b1e close #33 (5 months ago)", "54dd16f fix missed function close #32 (5 months ago)\nb9abad4 remove donate (5 months ago)\ne5a1c97 Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim into main (5 months ago)", "cbf6e02 close #28 change enc to global (5 months ago)", "896cbe0 Add some tips about seporator (#29) (5 months ago)\nf39a428 Changed some options from vim.o to vim.bo (#27) (5 months ago)\n1ffec73 fix bug when ouput is string (5 months ago)", "5d00eff add donate link (5 months ago)\n05d9c4c add event support (5 months ago)\n2bdf22a update doc (5 months ago)\n2004877 update (5 months ago)\n28afaca refactor diagnostic (5 months ago)\na51a6bd clean up (5 months ago)", "36db776 clean up (5 months ago)", "8a8dbcc clean up (5 months ago)", "782aab3 add support for CoC hint (#20) (5 months ago)\n6ab2f52 clean up (5 months ago)\n37c11d0 add doc foe define_file_icon (5 months ago)\n223599f feat: support custom file icon (5 months ago)", "48bb391 remove dynamicswitch (5 months ago)\n635c3c9 fix wrong link of example gif (5 months ago)", "061ef2b fix diff and coc diagnostic bug (5 months ago)\n1d3c2fb update the doc (5 months ago)\nc2e636c add packer install instructions (#15) (5 months ago)\n2163ea4 add git_root check in eviline (5 months ago)\n3a120ef public get_git_dir function (5 months ago)", "cca9d32 update mode color (5 months ago)\n84fc0dd add eviline and doc (5 months ago)\ncf86e89 change lua icon color (5 months ago)\ndd8453e fix bug of set_highlight (5 months ago)", "cf9a123 fix set_highlight bug (5 months ago)\n4f2a64b fix missed .gitignore icon (5 months ago)\nfec9c62 add gitbranch icon (5 months ago)\n3a78f2b Clarify empty_buffer function (#9) (5 months ago)\nba2e2f9 Add gitsigns support (#8) (5 months ago)", "adb7c65 rewrite get_git_dir (5 months ago)\n8d07d80 fix vcs root bug (5 months ago)\n91ddc97 add header icon (5 months ago)", "81c6a0d Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim into main (5 months ago)\nb544f1c fix bug of find git root close #6 (5 months ago)\nc86f725 Merge pull request #5 from salkin-mada/fix-install-instructions (6 months ago)\na090c1a fix special chars ` -> ' and misspelling in Plug .../galaxyline-nvim (6 months ago)", "ae091f6 Merge pull request #4 from p00f/origin/add_hint_info (6 months ago)\necabb35 Add lsp hint and info (6 months ago)\na873be9 add prefix for component (6 months ago)\nccff24a Merge branch 'main' of https://github.com/glepnir/galaxyline.nvim into main (6 months ago)", "fc5087d Add prefix for highlightgroup close#3 (6 months ago)\n539be72 Merge pull request #2 from mrkish/patch-1 (6 months ago)\nc2de221 Update README.md (6 months ago)\n1569ec1 update (6 months ago)\nad411f8 fix find_git_root bug (6 months ago)", "f4c502d update (6 months ago)", "573095b update (6 months ago)\n7dcb838 update (6 months ago)\n5abae7c update (6 months ago)", "a107d9e update (6 months ago)\n6a0459f remove test vim file (6 months ago)\n0bcabde update (6 months ago)\n28b2700 update (6 months ago)", "b92a0e7 update (6 months ago)\nf632511 update (6 months ago)\n528e7f8 update (6 months ago)\n470adf7 update (6 months ago)\n91f8438 update (6 months ago)", "f9e347c update (6 months ago)\n1694286 update (6 months ago)\n76035b5 update (6 months ago)\n3e64f2c update (6 months ago)\n702e8ca update (6 months ago)", "0aaacc1 update (6 months ago)\n4a1fc46 update (6 months ago)\n5165b40 update (6 months ago)\n72601d2 add component order (6 months ago)\nde7d34e update colorscheme (6 months ago)\nb9880f2 update (6 months ago)", "a42aade update (6 months ago)", "324162e update (6 months ago)\nf8c8a00 update (6 months ago)\nd6e337e add theme support (6 months ago)\n0f6a7ba add file icon (6 months ago)", "806797f update (6 months ago)\n4fe075c rename (6 months ago)\na1c1c8a rename (6 months ago)", "a99b97f update (6 months ago)", "404afdc update (6 months ago)\n15991ca update (6 months ago)\n6301974 update (6 months ago)\n9018393 update (6 months ago)", "c7282cd update doc (6 months ago)\n32f00b2 update (6 months ago)", "5533c8e Initial commit (6 months ago)" },
output = { "remote: Enumerating objects: 953, done. \nremote: Counting objects: 0% (1/945) \rremote: Counting objects: 1% (10/945) \rremote: Counting objects: 2% (19/945) \rremote: Counting objects: 3% (29/945) \rremote: Counting objects: 4% (38/945) \rremote: Counting objects: 5% (48/945) \rremote: Counting objects: 6% (57/945) \rremote: Counting objects: 7% (67/945) \rremote: Counting objects: 8% (76/945) \rremote: Counting objects: 9% (86/945) \rremote: Counting objects: 10% (95/945) \rremote: Counting objects: 11% (104/945) \rremote: Counting objects: 12% (114/945) \rremote: Counting objects: 13% (123/945) \rremote: Counting objects: 14% (133/945) \rremote: Counting objects: 15% (142/945) \rremote: Counting objects: 16% (152/945) \rremote: Counting objects: 17% (161/945) \rremote: Counting objects: 18% (171/945) \rremote: Counting objects: 19% (180/945) \rremote: Counting objects: 20% (189/945) \rremote: Counting objects: 21% (199/945) \rremote: Counting objects: 22% (208/945) \rremote: Counting objects: 23% (218/945) \rremote: Counting objects: 24% (227/945) \rremote: Counting objects: 25% (237/945) \rremote: Counting objects: 26% (246/945) \rremote: Counting objects: 27% (256/945) \rremote: Counting objects: 28% (265/945) \rremote: Counting objects: 29% (275/945) \rremote: Counting objects: 30% (284/945) \rremote: Counting objects: 31% (293/945) \rremote: Counting objects: 32% (303/945) \rremote: Counting objects: 33% (312/945) \rremote: Counting objects: 34% (322/945) \rremote: Counting objects: 35% (331/945) \rremote: Counting objects: 36% (341/945) \rremote: Counting objects: 37% (350/945) \rremote: Counting objects: 38% (360/945) \rremote: Counting objects: 39% (369/945) \rremote: Counting objects: 40% (378/945) \rremote: Counting objects: 41% (388/945) \rremote: Counting objects: 42% (397/945) \rremote: Counting objects: 43% (407/945) \rremote: Counting objects: 44% (416/945) \rremote: Counting objects: 45% (426/945) \rremote: Counting objects: 46% (435/945) \rremote: Counting objects: 47% (445/945) \rremote: Counting objects: 48% (454/945) \rremote: Counting objects: 49% (464/945) \rremote: Counting objects: 50% (473/945) \rremote: Counting objects: 51% (482/945) \rremote: Counting objects: 52% (492/945) \rremote: Counting objects: 53% (501/945) \rremote: Counting objects: 54% (511/945) \rremote: Counting objects: 55% (520/945) \rremote: Counting objects: 56% (530/945) \rremote: Counting objects: 57% (539/945) \rremote: Counting objects: 58% (549/945) \rremote: Counting objects: 59% (558/945) \rremote: Counting objects: 60% (567/945) \rremote: Counting objects: 61% (577/945) \rremote: Counting objects: 62% (586/945) \rremote: Counting objects: 63% (596/945) \rremote: Counting objects: 64% (605/945) \rremote: Counting objects: 65% (615/945) \rremote: Counting objects: 66% (624/945) \rremote: Counting objects: 67% (634/945) \rremote: Counting objects: 68% (643/945) \rremote: Counting objects: 69% (653/945) \rremote: Counting objects: 70% (662/945) \rremote: Counting objects: 71% (671/945) \rremote: Counting objects: 72% (681/945) \rremote: Counting objects: 73% (690/945) \rremote: Counting objects: 74% (700/945) \rremote: Counting objects: 75% (709/945) \rremote: Counting objects: 76% (719/945) \rremote: Counting objects: 77% (728/945) \rremote: Counting objects: 78% (738/945) \rremote: Counting objects: 79% (747/945) \rremote: Counting objects: 80% (756/945) \rremote: Counting objects: 81% (766/945) \rremote: Counting objects: 82% (775/945) \rremote: Counting objects: 83% (785/945) \rremote: Counting objects: 84% (794/945) \rremote: Counting objects: 85% (804/945) \rremote: Counting objects: 86% (813/945) \rremote: Counting objects: 87% (823/945) \rremote: Counting objects: 88% (832/945) \rremote: Counting objects: 89% (842/945) \rremote: Counting objects: 90% (851/945) \rremote: Counting objects: 91% (860/945) \rremote: Counting objects: 92% (870/945) \rremote: Counting objects: 93% (879/945) \rremote: Counting objects: 94% (889/945) \rremote: Counting objects: 95% (898/945) \rremote: Counting objects: 96% (908/945) \rremote: Counting objects: 97% (917/945)", "remote: Counting objects: 98% (927/945) \rremote: Counting objects: 99% (936/945) \rremote: Counting objects: 100% (945/945)", "remote: Counting objects: 100% (945/945), done. \nremote: Compressing objects: 0% (1/442) \rremote: Compressing objects: 1% (5/442) \rremote: Compressing objects: 2% (9/442) \rremote: Compressing objects: 3% (14/442) \rremote: Compressing objects: 4% (18/442) \rremote: Compressing objects: 5% (23/442) \rremote: Compressing objects: 6% (27/442) \rremote: Compressing objects: 7% (31/442) \rremote: Compressing objects: 8% (36/442) \rremote: Compressing objects: 9% (40/442)", "remote: Compressing objects: 10% (45/442) \rremote: Compressing objects: 11% (49/442) \rremote: Compressing objects: 12% (54/442) \rremote: Compressing objects: 13% (58/442) \rremote: Compressing objects: 14% (62/442) \rremote: Compressing objects: 15% (67/442) \rremote: Compressing objects: 16% (71/442) \rremote: Compressing objects: 17% (76/442) \rremote: Compressing objects: 18% (80/442) \rremote: Compressing objects: 19% (84/442) \rremote: Compressing objects: 20% (89/442) \rremote: Compressing objects: 21% (93/442) \rremote: Compressing objects: 22% (98/442) \rremote: Compressing objects: 23% (102/442) \rremote: Compressing objects: 24% (107/442) \rremote: Compressing objects: 25% (111/442) \rremote: Compressing objects: 26% (115/442) \rremote: Compressing objects: 27% (120/442) \rremote: Compressing objects: 28% (124/442) \rremote: Compressing objects: 29% (129/442) \rremote: Compressing objects: 30% (133/442) \rremote: Compressing objects: 31% (138/442) \rremote: Compressing objects: 32% (142/442) \rremote: Compressing objects: 33% (146/442) \rremote: Compressing objects: 34% (151/442) \rremote: Compressing objects: 35% (155/442) \rremote: Compressing objects: 36% (160/442) \rremote: Compressing objects: 37% (164/442) \rremote: Compressing objects: 38% (168/442) \rremote: Compressing objects: 39% (173/442) \rremote: Compressing objects: 40% (177/442) \rremote: Compressing objects: 41% (182/442) \rremote: Compressing objects: 42% (186/442) \rremote: Compressing objects: 43% (191/442) \rremote: Compressing objects: 44% (195/442) \rremote: Compressing objects: 45% (199/442) \rremote: Compressing objects: 46% (204/442) \rremote: Compressing objects: 47% (208/442)", "remote: Compressing objects: 48% (213/442) \rremote: Compressing objects: 49% (217/442) \rremote: Compressing objects: 50% (221/442) \rremote: Compressing objects: 51% (226/442) \rremote: Compressing objects: 52% (230/442) \rremote: Compressing objects: 53% (235/442) \rremote: Compressing objects: 54% (239/442) \rremote: Compressing objects: 55% (244/442) \rremote: Compressing objects: 56% (248/442) \rremote: Compressing objects: 57% (252/442) \rremote: Compressing objects: 58% (257/442) \rremote: Compressing objects: 59% (261/442) \rremote: Compressing objects: 60% (266/442) \rremote: Compressing objects: 61% (270/442) \rremote: Compressing objects: 62% (275/442) \rremote: Compressing objects: 63% (279/442) \rremote: Compressing objects: 64% (283/442) \rremote: Compressing objects: 65% (288/442)", "remote: Compressing objects: 66% (292/442) \rremote: Compressing objects: 67% (297/442) \rremote: Compressing objects: 68% (301/442) \rremote: Compressing objects: 69% (305/442) \rremote: Compressing objects: 70% (310/442) \rremote: Compressing objects: 71% (314/442) \rremote: Compressing objects: 72% (319/442) \rremote: Compressing objects: 73% (323/442) \rremote: Compressing objects: 74% (328/442) \rremote: Compressing objects: 75% (332/442) \rremote: Compressing objects: 76% (336/442) \rremote: Compressing objects: 77% (341/442)", "remote: Compressing objects: 78% (345/442) \rremote: Compressing objects: 79% (350/442) \rremote: Compressing objects: 80% (354/442) \rremote: Compressing objects: 81% (359/442) \rremote: Compressing objects: 82% (363/442) \rremote: Compressing objects: 83% (367/442) \rremote: Compressing objects: 84% (372/442) \rremote: Compressing objects: 85% (376/442) \rremote: Compressing objects: 86% (381/442) \rremote: Compressing objects: 87% (385/442)", "remote: Compressing objects: 88% (389/442) \rremote: Compressing objects: 89% (394/442) \rremote: Compressing objects: 90% (398/442) \rremote: Compressing objects: 91% (403/442) \rremote: Compressing objects: 92% (407/442) \rremote: Compressing objects: 93% (412/442) \rremote: Compressing objects: 94% (416/442) \rremote: Compressing objects: 95% (420/442) \rremote: Compressing objects: 96% (425/442) \rremote: Compressing objects: 97% (429/442)", "remote: Compressing objects: 98% (434/442) \rremote: Compressing objects: 99% (438/442) \rremote: Compressing objects: 100% (442/442) \rremote: Compressing objects: 100% (442/442), done.", "Receiving objects: 0% (1/897)", "Receiving objects: 1% (9/897)", "Receiving objects: 2% (18/897)", "Receiving objects: 3% (27/897)", "Receiving objects: 4% (36/897)", "Receiving objects: 5% (45/897)", "Receiving objects: 6% (54/897)", "Receiving objects: 7% (63/897)", "Receiving objects: 8% (72/897)", "Receiving objects: 9% (81/897)", "Receiving objects: 10% (90/897)\rReceiving objects: 11% (99/897)", "Receiving objects: 12% (108/897)", "Receiving objects: 13% (117/897)", "Receiving objects: 14% (126/897)", "Receiving objects: 15% (135/897)", "Receiving objects: 16% (144/897)", "Receiving objects: 17% (153/897)", "Receiving objects: 18% (162/897)", "Receiving objects: 19% (171/897)", "Receiving objects: 20% (180/897)", "Receiving objects: 21% (189/897)", "Receiving objects: 22% (198/897)", "Receiving objects: 23% (207/897)", "Receiving objects: 24% (216/897)", "Receiving objects: 25% (225/897)", "Receiving objects: 26% (234/897)", "Receiving objects: 27% (243/897)", "Receiving objects: 28% (252/897)", "Receiving objects: 29% (261/897)", "Receiving objects: 30% (270/897)", "Receiving objects: 31% (279/897)", "Receiving objects: 32% (288/897)", "Receiving objects: 33% (297/897)", "Receiving objects: 34% (305/897)", "Receiving objects: 35% (314/897)", "Receiving objects: 36% (323/897)", "Receiving objects: 37% (332/897)", "Receiving objects: 38% (341/897)", "Receiving objects: 39% (350/897)", "Receiving objects: 40% (359/897)", "Receiving objects: 41% (368/897)", "Receiving objects: 42% (377/897)", "Receiving objects: 43% (386/897)", "Receiving objects: 44% (395/897)", "Receiving objects: 45% (404/897)", "Receiving objects: 46% (413/897)\rReceiving objects: 47% (422/897)", "Receiving objects: 48% (431/897)", "Receiving objects: 49% (440/897)", "Receiving objects: 50% (449/897)", "Receiving objects: 51% (458/897)", "Receiving objects: 52% (467/897)", "Receiving objects: 53% (476/897)", "Receiving objects: 54% (485/897)\rReceiving objects: 55% (494/897)\rReceiving objects: 56% (503/897)", "Receiving objects: 57% (512/897)", "Receiving objects: 58% (521/897)", "Receiving objects: 59% (530/897)", "Receiving objects: 60% (539/897)", "Receiving objects: 61% (548/897)", "Receiving objects: 62% (557/897)", "Receiving objects: 63% (566/897)\rReceiving objects: 64% (575/897)", "Receiving objects: 65% (584/897)", "Receiving objects: 66% (593/897)", "Receiving objects: 67% (601/897)\rReceiving objects: 68% (610/897)", "Receiving objects: 69% (619/897)", "Receiving objects: 70% (628/897)\rReceiving objects: 71% (637/897)", "Receiving objects: 72% (646/897)", "Receiving objects: 73% (655/897)", "Receiving objects: 74% (664/897)", "Receiving objects: 75% (673/897)", "Receiving objects: 76% (682/897)", "Receiving objects: 77% (691/897)", "Receiving objects: 78% (700/897)", "Receiving objects: 79% (709/897)", "Receiving objects: 80% (718/897)", "Receiving objects: 81% (727/897)", "Receiving objects: 82% (736/897)", "Receiving objects: 83% (745/897)", "Receiving objects: 84% (754/897)", "Receiving objects: 85% (763/897)", "remote: Total 897 (delta 502), reused 819 (delta 438), pack-reused 0 \nReceiving objects: 86% (772/897)", "Receiving objects: 87% (781/897)\rReceiving objects: 88% (790/897)\rReceiving objects: 89% (799/897)\rReceiving objects: 90% (808/897)\rReceiving objects: 91% (817/897)", "Receiving objects: 92% (826/897)", "Receiving objects: 93% (835/897)", "Receiving objects: 94% (844/897)", "Receiving objects: 95% (853/897)", "Receiving objects: 96% (862/897)", "Receiving objects: 97% (871/897)", "Receiving objects: 98% (880/897)", "Receiving objects: 99% (889/897)", "Receiving objects: 100% (897/897)\rReceiving objects: 100% (897/897), 126.48 KiB | 912.00 KiB/s, done.", "Resolving deltas: 0% (0/502)", "Resolving deltas: 2% (14/502)", "Resolving deltas: 6% (35/502)", "Resolving deltas: 11% (59/502)\rResolving deltas: 12% (61/502)", "Resolving deltas: 13% (67/502)", "Resolving deltas: 17% (88/502)", "Resolving deltas: 20% (105/502)", "Resolving deltas: 27% (140/502)", "Resolving deltas: 28% (141/502)\rResolving deltas: 30% (151/502)\rResolving deltas: 31% (156/502)", "Resolving deltas: 32% (161/502)\rResolving deltas: 33% (167/502)", "Resolving deltas: 34% (173/502)\rResolving deltas: 35% (177/502)\rResolving deltas: 36% (181/502)", "Resolving deltas: 37% (188/502)\rResolving deltas: 38% (192/502)\rResolving deltas: 40% (201/502)", "Resolving deltas: 41% (209/502)", "Resolving deltas: 42% (213/502)", "Resolving deltas: 43% (218/502)\rResolving deltas: 45% (226/502)", "Resolving deltas: 46% (231/502)", "Resolving deltas: 49% (249/502)", "Resolving deltas: 50% (256/502)", "Resolving deltas: 51% (260/502)\rResolving deltas: 52% (262/502)", "Resolving deltas: 53% (267/502)", "Resolving deltas: 55% (279/502)", "Resolving deltas: 61% (309/502)", "Resolving deltas: 65% (330/502)", "Resolving deltas: 66% (334/502)", "Resolving deltas: 67% (341/502)", "Resolving deltas: 68% (345/502)", "Resolving deltas: 69% (349/502)", "Resolving deltas: 70% (355/502)", "Resolving deltas: 71% (357/502)", "Resolving deltas: 72% (365/502)", "Resolving deltas: 73% (371/502)\rResolving deltas: 75% (377/502)\rResolving deltas: 76% (383/502)\rResolving deltas: 79% (398/502)", "Resolving deltas: 83% (420/502)", "Resolving deltas: 84% (422/502)", "Resolving deltas: 90% (453/502)", "Resolving deltas: 93% (468/502)", "Resolving deltas: 98% (493/502)", "Resolving deltas: 99% (498/502)", "Resolving deltas: 100% (502/502)", "Resolving deltas: 100% (502/502), completed with 29 local objects.", "From https://github.com/glepnir/galaxyline.nvim\n b4ca8f1..505bd8a main -> origin/main", "Updating b4ca8f1..505bd8a\nFast-forward", "lua/galaxyline/colors.lua | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)" },
revs = { "b4ca8f1", "505bd8a" }
}
[INFO jue 08 abr 2021 11:05:27] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[INFO jue 08 abr 2021 11:09:51] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[INFO jue 08 abr 2021 11:10:14] .../site/pack/packer/opt/packer.nvim/lua/packer/display.lua:469: Operations are still running; plugin info is not ready yet
[INFO jue 08 abr 2021 11:26:17] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[INFO jue 08 abr 2021 11:27:01] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[INFO jue 08 abr 2021 11:42:19] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[INFO jue 08 abr 2021 11:44:27] .../site/pack/packer/opt/packer.nvim/lua/packer/display.lua:469: Operations are still running; plugin info is not ready yet
[INFO jue 08 abr 2021 11:44:28] .../site/pack/packer/opt/packer.nvim/lua/packer/display.lua:469: Operations are still running; plugin info is not ready yet
[INFO jue 08 abr 2021 11:44:29] .../site/pack/packer/opt/packer.nvim/lua/packer/display.lua:469: Operations are still running; plugin info is not ready yet
[INFO jue 08 abr 2021 11:44:30] .../site/pack/packer/opt/packer.nvim/lua/packer/display.lua:469: Operations are still running; plugin info is not ready yet
[INFO jue 08 abr 2021 11:44:30] .../site/pack/packer/opt/packer.nvim/lua/packer/display.lua:469: Operations are still running; plugin info is not ready yet
[INFO jue 08 abr 2021 11:44:31] .../site/pack/packer/opt/packer.nvim/lua/packer/display.lua:469: Operations are still running; plugin info is not ready yet
[INFO jue 08 abr 2021 11:45:05] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:266: All configured plugins are installed
[INFO jue 08 abr 2021 11:45:08] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[INFO jue 08 abr 2021 11:51:49] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
[INFO jue 08 abr 2021 12:16:49] ...im/site/pack/packer/opt/packer.nvim/lua/packer/clean.lua:78: Already clean!
You should be able to
requirethe library from anywhere within Neovim (exceptinit.luaunless you manually sourcepacker_compiledfirst or set up the modifications topackage.pathandpackage.cpathyourself - this is a known issue).
I think what's happening is that Lua on your system looks in the wrong environment if you try to
requirebeforepacker_compiledhas been sourced. As a workaround, I'd suggest copying thepackage.pathetc. lines frompacker_compiledto the start of yourinit.lua, and seeing ifrequires work as expected then.
I tried to specify this on top of my init.lua file like so:
local local_package_path = "/home/sebas5758/.luaver/luarocks/3.6.0_5.3/lib/lua/5.3/effil.so"
package.path = package.path..';'..local_package_path
But now I'm being greeted with this error whn I try to require("effil") from the other file I was talking about:

And I don't think it's the lib it self, because it works perfectly inside of pluginList/lua.lua and any other lua file that's not part of nvim. I also tested it with another lib (local local_package_path = "/home/sebas5758/.luaver/luarocks/3.6.0_5.3/lib/lua/5.3/lfs.so"
) and I'm receiving this:

(Also, I tried with lua 5.1 as well)
Fascinating, thanks for the info...
I'm fairly convinced this has to do with your luaenv setup, but ideally that should not interfere with Neovim or packer. When you say you tried with Lua 5.1 as well, do you mean that you tried using luaver 5.1 and the same package_path?
Also, could you please try copying the package.path modifications from the top of your packer_compiled? These should help point Neovim toward packer's hererocks installation.
Although I don't think it's the issue here (maybe), we should probably also update packer to check for existing system hererocks before installing it locally.