wbthomason / packer.nvim

A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config
MIT License
7.89k stars 264 forks source link

PackerSync stuck #746

Open Chaitanyabsprip opened 2 years ago

Chaitanyabsprip commented 2 years ago

Steps to reproduce

remove a plugin and then run packersync again after removing plugin

Actual behaviour

When I run PackerSync command most of the plugins are synced but some off them get stuck on checking current commit.

Expected behaviour

PackerSync command will sync plugin repos normally and exit the process.

packer files

Plugin specification file(s) Post or link your plugin specification files here, if you aren't able to provide a minimal reproducer ``` lua local execute = vim.api.nvim_cmmand local fn = vim.fn local install_path = fn.stdpath 'data' .. '/site/pack/packer/start/packer.nvim' if fn.empty(fn.glob(install_path)) > 0 then fn.system { 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path, } execute 'packadd packer.nvim' end vim.cmd [[ augroup packer_user_config autocmd! autocmd! BufWritePost plugins.lua source | PackerSync ]] local status_ok, packer = pcall(require, 'packer') if not status_ok then return end local use = packer.use packer.init { display = { open_fn = function() return require('packer.util').float { border = 'rounded' } end, }, } return packer.startup(function() -- - - - - - - - - - - - - - - - - - LSP - - - - - - - - - - - - - - - - - - use { 'akinsho/flutter-tools.nvim', config = "require 'lsp.dart-ls'", after = 'nvim-lspconfig', } use { 'arkav/lualine-lsp-progress' } use { 'folke/lsp-trouble.nvim', after = 'nvim-lspconfig', config = "require 'plugins.trouble'", } use { 'jose-elias-alvarez/null-ls.nvim' } use { 'mfussenegger/nvim-dap' } use { 'neovim/nvim-lspconfig', event = 'BufRead', config = function() require 'lsp.lsp-settings' require 'lsp.bash-ls' require 'lsp.clangd-ls' require 'lsp.css-ls' require 'lsp.html-ls' require 'lsp.java-ls' require 'lsp.js-ts-ls' require 'lsp.lua-ls' require 'lsp.null-ls' require 'lsp.nvim-lsp' require 'lsp.pyright-ls' -- require 'lsp.rust-ls' require 'lsp.yaml-ls' end, } use { 'nvim-lua/lsp_extensions.nvim' } use { 'nvim-telescope/telescope-dap.nvim' } use { 'ray-x/lsp_signature.nvim' } use { 'rcarriga/nvim-dap-ui' } use { 'simrat39/rust-tools.nvim', config = function() require('rust-tools').setup {} require 'lsp.rust-tools-ls' end, after = 'nvim-lspconfig', } use { 'theHamsta/nvim-dap-virtual-text' } use { 'windwp/lsp-fastaction.nvim', config = "require 'plugins.lsp-fastaction'", after = 'nvim-lspconfig', } -- - - - - - - - - - - - - - - - - - XXX - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - FILE TREE NAV - - - - - - - - - - - - - - - - use { 'ahmedkhalf/project.nvim', config = function() require('project_nvim').setup { manual_mode = false, detection_methods = { 'lsp', 'pattern' }, patterns = { 'pubspec.yaml', 'package.json', 'config.py', 'setup.py', 'cargo.toml', 'Makefile', 'makefile', '.git', '.gitignore', '_darcs', '.hg', '.bzr', '.svn', }, ignore_lsp = { 'null-ls' }, show_hidden = false, silent_chdir = true, datapath = vim.fn.stdpath 'data', } require('telescope').load_extension 'projects' end, after = 'telescope.nvim', event = 'BufWinEnter', } use { 'camspiers/snap', keys = { { 'n', '' }, { 'n', 'fg' }, { 'n', 'fb' }, { 'n', 'fo' }, }, config = "require 'plugins.snap'", } use { 'kyazdani42/nvim-tree.lua', requires = 'kyazdani42/nvim-web-devicons', cmd = 'NvimTreeToggle', config = "require 'plugins.nvim-tree'", keys = { { 'n', 'e' }, { 'n', 'n' }, }, } use { 'nvim-telescope/telescope.nvim', requires = { 'nvim-lua/plenary.nvim' }, } -- - - - - - - - - - - - - - - - - - XXX - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - - - EDITING - - - - - - - - - - - - - - - - - use { -- better surround plugin needed 'blackCauldron7/surround.nvim', config = function() require('surround').setup {} end, event = 'BufWinEnter', } use { 'numToStr/Comment.nvim', config = function() require('Comment').setup() end, event = 'BufWinEnter', } use { 'windwp/nvim-autopairs', after = 'nvim-cmp', config = "require 'plugins.nvim-autopairs'", } -- - - - - - - - - - - - - - - - - - XXX - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - - - - GIT - - - - - - - - - - - - - - - - - - use { 'lewis6991/gitsigns.nvim', requires = { 'nvim-lua/plenary.nvim' }, config = "require 'plugins.gitsigns'", event = 'BufRead', } use { 'rhysd/conflict-marker.vim', config = function() -- vim.g.conflict_marker_highlight_group = '' -- Include text after begin and end markers vim.g.conflict_marker_begin = '^<<<<<<< .*$' vim.g.conflict_marker_common_ancestors = '^||||||| .*$' vim.g.conflict_marker_end = '^>>>>>>> .*$' end, keys = { { 'n', ']x' }, { 'n', '[x' }, }, } -- - - - - - - - - - - - - - - - - - XXX - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - - - UTILITIES - - - - - - - - - - - - - - - - use { 'ThePrimeagen/refactoring.nvim', config = function() require('refactoring').setup {} end, ft = { 'go', 'javascript', 'typescript', 'lua', 'python', 'c', 'cpp', }, } -- use {"akinsho/nvim-bufferline.lua"} use { 'akinsho/nvim-toggleterm.lua', config = "require 'plugins.toggleterm'", keys = { { 'n', '' }, { 'n', 'tf' }, { 'n', 'tg' }, { 'n', 'tt' }, { 'n', 'tr' }, }, cmd = 'ToggleTerm', } use { 'kyazdani42/nvim-web-devicons' } use { 'matbme/JABS.nvim', config = function() local ui = vim.api.nvim_list_uis()[1] require('jabs').setup { position = 'corner', -- center, corner width = 70, height = 10, border = 'single', -- none, single, double, rounded, solid, shadow, (or an array or chars) preview_position = 'bottom', -- top, bottom, left, right preview = { width = 100, height = 30, border = 'double', -- none, single, double, rounded, solid, shadow, (or an array or chars) }, col = ui.width * 0.55, -- Window appears on the right row = ui.height / 2, -- Window appears in the vertical middle } end, cmd = { 'JABS', 'JABSOpen', 'J' }, } use { 'filipdutescu/renamer.nvim', branch = 'master', config = "require 'lsp.lsp-rename'", requires = { { 'nvim-lua/plenary.nvim' } }, after = 'nvim-lspconfig', } use { 'folke/twilight.nvim', config = function() require('twilight').setup { dimming = { alpha = 0.25, inactive = true, }, context = 15, } end, cmd = { 'Twilight', 'TwilightEnable' }, } use { 'folke/zen-mode.nvim', config = function() require('zen-mode').setup { window = { backdrop = 0.75, width = 0.8, }, plugins = { gitsigns = { enabled = true }, -- disables git signs }, } end, keys = 'z', cmd = 'ZenMode', } use { 'lewis6991/impatient.nvim' } use { 'nathom/filetype.nvim', config = function() vim.g.did_load_filetypes = 1 end, } use { 'nicwest/vim-workman', cmd = 'Workman' } use { 'norcalli/nvim-colorizer.lua', config = function() require('colorizer').setup {} end, cmd = 'ColorizerToggle', } use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate', event = 'BufWinEnter', config = "require 'plugins.nvim-treesitter'", } use { 'nvim-lua/plenary.nvim' } use { 'nvim-lua/popup.nvim' } use { 'nvim-pack/nvim-spectre', disable = true } use { 'rmagatti/auto-session', requires = { 'rmagatti/session-lens' } } use { 'stevearc/aerial.nvim' } use { 'tpope/vim-repeat' } use { 'phaazon/hop.nvim', as = 'hop', event = 'BufRead', config = "require 'plugins.hop'", } -- - - - - - - - - - - - - - - - - - XXX - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - COMPLETION AND SNIPPETS - - - - - - - - - - - - - use { 'Nash0x7E2/awesome-flutter-snippets', after = 'flutter-tools.nvim' } use { 'dmitmel/cmp-cmdline-history', after = 'nvim-cmp' } use { 'github/copilot.vim', event = 'BufWinEnter' } use { 'hrsh7th/cmp-buffer', after = 'nvim-cmp' } use { 'hrsh7th/cmp-cmdline', after = 'nvim-cmp' } use { 'hrsh7th/cmp-copilot', after = 'nvim-cmp' } use { 'hrsh7th/cmp-emoji', after = 'nvim-cmp' } use { 'hrsh7th/cmp-nvim-lsp' } use { 'hrsh7th/cmp-nvim-lua', after = 'nvim-cmp' } use { 'hrsh7th/cmp-path', after = 'nvim-cmp' } use { 'hrsh7th/cmp-vsnip', after = 'nvim-cmp' } use { 'hrsh7th/nvim-cmp', config = "require 'plugins.nvim-cmp'", event = { 'InsertEnter', 'CmdlineEnter' }, } use { 'hrsh7th/vim-vsnip', after = 'nvim-cmp' } use { 'rafamadriz/friendly-snippets', after = 'nvim-cmp' } -- - - - - - - - - - - - - - - - - - XXX - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - DEVELOPMENT SPECIFIC - - - - - - - - - - - - - - use { 'Alexisvt/flutter-snippets', ft = { 'dart' }, after = 'flutter-tools.nvim', } use { vim.fn.stdpath 'cache' .. '/dart-code', ft = { 'dart' }, after = 'flutter-tools.nvim', } use { 'Dart-Code/Flutter', ft = { 'dart' } } use { 'akinsho/dependency-assist.nvim', config = function() require('dependency_assist').setup() end, ft = 'yaml', after = 'flutter-tools.nvim', } use { 'b0o/SchemaStore.nvim' } use { 'dag/vim-fish', ft = 'fish' } use { 'dart-lang/dart-vim-plugin', config = function() vim.g.dart_format_on_save = 0 vim.cmd 'let dart_html_in_string=v:true' end, ft = { 'dart' }, } use { 'jparise/vim-graphql', ft = 'graphql' } use { 'natebosch/dartlang-snippets', ft = 'dart' } use { 'rcarriga/vim-ultest', requires = { 'vim-test/vim-test', 'tpope/vim-dispatch', 'radenling/vim-dispatch-neovim', 'skywind3000/asyncrun.vim', }, run = ':UpdateRemotePlugins', config = function() vim.g.ultest_output_on_run = 0 end, event = 'BufRead', } use { 'wbthomason/packer.nvim' } -- *************************** THEME ******************************** use { 'christianchiarulli/nvcode-color-schemes.vim' } use { 'rebelot/kanagawa.nvim' } use { 'rose-pine/neovim', as = 'rose-pine', config = function() vim.g.rose_pine_variant = 'base' vim.g.rose_pine_enable_italics = true vim.g.rose_pine_disable_background = true end, } use { 'folke/tokyonight.nvim', config = function() vim.g.tokyonight_colors = { border = '#7aa2f7', bg = '#262C3A' } vim.g.tokyonight_dark_float = true vim.g.tokyonight_dark_sidebar = true vim.g.tokyonight_day_brightness = 0.3 vim.g.tokyonight_hide_inactive_statusline = false vim.g.tokyonight_italic_comments = true vim.g.tokyonight_italic_functions = true vim.g.tokyonight_italic_keywords = true vim.g.tokyonight_italic_variables = false vim.g.tokyonight_sidebars = { 'packer' } vim.g.tokyonight_style = 'storm' vim.g.tokyonight_transparent = false end, } use { 'hoob3rt/lualine.nvim', event = 'BufWinEnter', config = "require 'plugins.themes.lualine'", } use { 'numToStr/Sakura.nvim' } use { 'p00f/nvim-ts-rainbow', after = 'nvim-treesitter' } -- **************************************************************************** end) ```
packer log file Post the contents of ~/.cache/nvim/packer.nvim.log here ```log [ERROR Fri Aug 6 18:23:27 2021 14576022744250] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...r/start/nvim-ts-autotag/lua/nvim-ts-autotag/internal.lua:2: module 'nvim-treesitter.configs' not found: no field package.preload['nvim-treesitter.configs'] no file './nvim-treesitter/configs.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/configs.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/configs.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/configs.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/configs.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/configs.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/configs/init.lua' no file './nvim-treesitter/configs.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/configs.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/configs.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/configs.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [ERROR Fri Aug 6 18:23:27 2021 14576088473625] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...vim-treesitter-refactor/lua/nvim-treesitter-refactor.lua:1: module 'nvim-treesitter.query' not found: no field package.preload['nvim-treesitter.query'] no file './nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query/init.lua' no file './nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/query.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/query.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [ERROR Fri Aug 6 18:23:55 2021 14603598768416] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...m/site/pack/packer/start/nvim-ts-rainbow/lua/rainbow.lua:1: module 'nvim-treesitter.query' not found: no field package.preload['nvim-treesitter.query'] no file './nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query.lua' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query/init.lua' no file './nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/query.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/query.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/home/chaitanya/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [WARN Fri Aug 6 18:24:20 2021 14628771756416] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628784285791] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628791884583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628798349708] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628802189708] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628806435375] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628807849125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628810198458] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628813897208] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628816531791] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:24:20 2021 14628818298375] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:27:41 2021 14830245400750] ...site/pack/packer/start/packer.nvim/lua/packer/result.lua:49: Unable to get diff! [WARN Fri Aug 6 18:29:28 2021 14936328131833] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936335678125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936338895250] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936341454625] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936345995000] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936348387458] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936350347458] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936351797125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936355579791] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936356880916] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:29:28 2021 14936358948500] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:31:17 2021 15046113838125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:31:17 2021 15046125192541] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:31:17 2021 15046129980458] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 6 18:31:17 2021 15046133762291] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [ERROR Wed Aug 11 02:01:00 2021 1.8556723486763e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Wed Aug 11 02:06:15 2021 1.8588288676829e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Fri Aug 20 01:18:04 2021 52041423749833] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Fri Aug 20 01:18:15 2021 52052673720208] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Fri Aug 20 03:43:22 2021 60760274487333] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Fri Aug 20 03:43:25 2021 60762770134291] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Fri Aug 20 03:43:35 2021 60773119739291] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Fri Aug 20 03:43:41 2021 60779309219458] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Fri Aug 20 12:54:06 2021 93804606670958] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Fri Aug 20 13:04:12 2021 94410033978916] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Fri Aug 20 19:57:26 2021 1.1920454624446e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit 7d2b080 of sindrets/diffview.nvim [ERROR Sat Aug 21 01:30:48 2021 1.3920669671196e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sat Aug 21 01:57:33 2021 1.4081120395717e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sat Aug 21 23:01:30 2021 21758007039541] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit d343bc3 of akinsho/nvim-bufferline.lua [WARN Sat Aug 21 23:02:19 2021 21807119792916] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit d343bc3 of akinsho/nvim-bufferline.lua [ERROR Sat Aug 21 23:26:24 2021 23251488213250] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 00:01:06 2021 25333531568208] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 00:06:24 2021 25651428514291] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 00:16:14 2021 26241540823750] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 00:16:23 2021 26250652521500] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 00:17:17 2021 26304418921166] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...vim-treesitter-refactor/lua/nvim-treesitter-refactor.lua:1: module 'nvim-treesitter.query' not found: no field package.preload['nvim-treesitter.query'] no file './nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query/init.lua' no file './nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/query.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/query.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [ERROR Sun Aug 22 00:17:23 2021 26311376429708] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...r/start/nvim-ts-autotag/lua/nvim-ts-autotag/internal.lua:2: module 'nvim-treesitter.configs' not found: no field package.preload['nvim-treesitter.configs'] no file './nvim-treesitter/configs.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/configs.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/configs.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/configs.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/configs.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/configs.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/configs/init.lua' no file './nvim-treesitter/configs.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/configs.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/configs.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/configs.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [WARN Sun Aug 22 00:18:06 2021 26354285623916] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354289866875] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354294832916] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354298629083] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354300877958] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354302129208] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354305567708] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354306608750] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354309606333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354311245916] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354314062833] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354315223458] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354317430625] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354318482875] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354321628333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354325006541] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354326615833] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354328576875] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354330726500] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354331466000] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354332007041] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354333047083] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354334254500] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354336772583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354338286875] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354339977375] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354341393458] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354342305625] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:18:06 2021 26354342807583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451461877375] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451463394791] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451464493875] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451466516583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451468642791] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451469988250] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451471134333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451472928833] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451475099333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451476388791] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451477938500] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451479553666] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451481723833] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451483793250] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451484591500] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451486222750] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451488262166] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451489418000] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:19:44 2021 26451490185708] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864160351666] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864167227333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864174149958] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864180068333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864183635791] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864186946958] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864190262333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864194384000] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864196862166] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864199441500] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864202062708] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864205217583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864207950583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864209045833] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864211183500] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864213597583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864214963166] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:26:36 2021 26864215623833] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040469783750] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040475112958] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040478431666] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040483006416] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040486478583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040488575291] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040490657625] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040493160125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040496518333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040498589291] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040501044583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040503202750] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040505392875] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040507733666] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040508806750] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040510858000] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040513001958] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:29:33 2021 27040515383500] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130459704250] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130464772416] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130467368125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130472037416] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130475592125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130477981333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130479908041] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130482279875] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130485564208] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130487686583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130490013000] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130492331791] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130494563166] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130497101708] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130498126833] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130500267375] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130502625750] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:31:03 2021 27130504931541] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198122692333] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198127204083] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198130492166] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198135230250] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198138693916] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198140854375] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198142941666] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198145565125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198148698708] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198151637291] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198154178666] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198156513625] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198158858208] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198161466041] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198162600583] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198164708125] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198167044000] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:32:10 2021 27198169616041] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:34:30 2021 27338185147666] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 00:34:51 2021 27359047766791] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...m/site/pack/packer/start/nvim-ts-rainbow/lua/rainbow.lua:1: module 'nvim-treesitter.query' not found: no field package.preload['nvim-treesitter.query'] no file './nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query/init.lua' no file './nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/query.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/query.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [ERROR Sun Aug 22 00:35:27 2021 27395151415166] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 00:35:35 2021 27402884747291] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 00:35:37 2021 27404832249125] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 00:37:40 2021 27527896842500] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 00:37:44 2021 27531454614916] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 00:38:42 2021 27590072561041] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 00:38:44 2021 27591986354416] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 00:40:03 2021 27670343418625] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Sun Aug 22 00:40:52 2021 27719610449291] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Sun Aug 22 00:51:53 2021 28380437455541] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sun Aug 22 00:51:53 2021 28380447285708] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [ERROR Sun Aug 22 02:10:37 2021 33105177955625] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 02:12:03 2021 33190776858625] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 02:12:19 2021 33207250007708] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 02:14:50 2021 33358320345666] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Sun Aug 22 02:51:00 2021 35528439950375] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:35:14 2021 88582427394125] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 17:35:16 2021 88585042321666] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:35:26 2021 88595256713833] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 17:35:29 2021 88598123856208] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:36:08 2021 88636470508500] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 17:36:10 2021 88639084228291] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:36:46 2021 88675176733541] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 17:36:49 2021 88677552438833] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:39:24 2021 88832843351958] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Sun Aug 22 17:39:57 2021 88865340366583] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Sun Aug 22 17:40:12 2021 88880876330625] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Sun Aug 22 17:40:19 2021 88887593119041] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Sun Aug 22 17:41:08 2021 88936892603375] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 17:41:11 2021 88939337982958] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:41:32 2021 88961082703000] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 17:41:35 2021 88963644999416] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:42:05 2021 88993550549250] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 17:42:07 2021 88995849319541] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:45:42 2021 89210635255958] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 17:45:44 2021 89212938569291] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Sun Aug 22 17:46:41 2021 89269333283500] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Aug 22 19:09:59 2021 94268117423583] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Mon Aug 23 18:27:57 2021 1.7814694395308e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [ERROR Mon Aug 23 18:28:52 2021 1.7820208092392e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:692: attempt to index a nil value [WARN Fri Aug 27 00:54:43 2021 2.5449505411613e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 00:54:56 2021 2.5450763654713e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:08:22 2021 2.5531426426467e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:09:20 2021 2.5537188629042e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:09:47 2021 2.5539921204933e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:10:07 2021 2.5541919686888e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:10:37 2021 2.5544930145454e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:11:01 2021 2.5547318793167e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:11:37 2021 2.5550882346767e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:12:42 2021 2.5557440072708e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:13:18 2021 2.5560954460417e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:13:29 2021 2.5562142703379e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [WARN Fri Aug 27 01:14:22 2021 2.5567355566738e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Fri Aug 27 01:21:50 2021 2.5612175879513e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...m/site/pack/packer/start/nvim-ts-rainbow/lua/rainbow.lua:1: module 'nvim-treesitter.query' not found: no field package.preload['nvim-treesitter.query'] no file './nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query/init.lua' no file './nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/query.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/query.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [ERROR Fri Aug 27 01:39:43 2021 2.5719508505267e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(let):E5108: Error executing lua ...escope/_extensions/session-lens/session-lens-library.lua:1: module 'plenary.path' not found: no field package.preload['plenary.path'] no file './plenary/path.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/plenary/path.lua' no file '/usr/local/share/lua/5.1/plenary/path.lua' no file '/usr/local/share/lua/5.1/plenary/path/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/plenary/path.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/plenary/path/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/plenary/path.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/plenary/path/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/plenary/path.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/plenary/path/init.lua' no file './plenary/path.so' no file '/usr/local/lib/lua/5.1/plenary/path.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/plenary/path.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/plenary/path.so' no file './plenary.so' no file '/usr/local/lib/lua/5.1/plenary.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/plenary.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/plenary.so' [WARN Fri Aug 27 01:40:33 2021 2.5724494921075e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724495488742e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724495970129e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724496216e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724496434221e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724496782992e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724497212771e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724497402563e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.572449765705e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.572449797855e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724498165883e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724498384246e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.572449879955e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724499138842e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:40:33 2021 2.5724499351963e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.5736057819975e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.5736058560579e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.5736058967533e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.5736059329983e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.5736059938042e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.573606033005e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.57360608652e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.5736061253888e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:42:29 2021 2.5736061611621e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:43:47 2021 2.5743929351117e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:43:47 2021 2.5743929738513e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:43:47 2021 2.5743929955513e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:43:47 2021 2.5743930319479e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:43:47 2021 2.5743930579996e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:46:00 2021 2.5757188001238e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:46:00 2021 2.5757188682004e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:46:00 2021 2.5757189015525e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:46:00 2021 2.5757189510988e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:47:09 2021 2.5764070931033e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:47:09 2021 2.5764071458496e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:47:09 2021 2.5764071802154e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Fri Aug 27 01:47:09 2021 2.5764072254033e+14] ...m/site/pack/packer/start/packer.nvim/lua/packer/jobs.lua:87: Killing git due to timeout! [WARN Sat Sep 18 15:48:11 2021 75891068668125] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit 4011f4a of nvim-lua/lsp_extensions.nvim [WARN Tue Sep 28 12:29:35 2021 8.4902644849592e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:554: Potential breaking change in commit 536179c of nvim-treesitter/nvim-treesitter [WARN Tue Sep 28 12:29:35 2021 8.4902644877938e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:554: Potential breaking change in commit 662f3aa of nvim-treesitter/nvim-treesitter [WARN Tue Sep 28 14:13:49 2021 8.5528079280688e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:554: Potential breaking change in commit 55c5699 of SmiteshP/nvim-gps [WARN Wed Oct 13 11:59:52 2021 13749863508291] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:554: Potential breaking change in commit b96ef13 of pianocomposer321/yabs.nvim [WARN Wed Oct 13 11:59:52 2021 13749863773791] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:554: Potential breaking change in commit 1994cd0 of pianocomposer321/yabs.nvim [WARN Mon Oct 18 19:09:31 2021 1.6903100450033e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit ac5d1d9 of neovim/nvim-lspconfig [WARN Sat Oct 23 12:08:10 2021 5.7575333587396e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit 7d15304 of hoob3rt/lualine.nvim [WARN Sat Oct 23 12:08:10 2021 5.7575333611921e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit d25a37f of hoob3rt/lualine.nvim [WARN Sat Oct 23 12:08:10 2021 5.7575333615404e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit 61ac665 of hoob3rt/lualine.nvim [WARN Sat Oct 23 12:08:10 2021 5.7575333621963e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit fcee105 of hoob3rt/lualine.nvim [WARN Sat Oct 23 12:08:10 2021 5.7575333625142e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit f68d81d of hoob3rt/lualine.nvim [WARN Sat Oct 23 12:08:10 2021 5.757533362815e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit 6d153da of hoob3rt/lualine.nvim [WARN Sat Oct 23 12:08:10 2021 5.7575333633108e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:548: Potential breaking change in commit 56842d0 of arkav/lualine-lsp-progress [WARN Wed Nov 3 02:20:43 2021 3.0462209589613e+14] ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:197: Plugin "nvim-lspconfig" is used twice! (line 221) [ERROR Wed Nov 3 02:24:58 2021 3.0487665261633e+14] ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:843: Failure running setup function: "/Users/chaitanyasharma/.config/nvim/lua/plugins/init.lua:161: attempt to call global 'user' (a nil value)" [ERROR Wed Nov 3 02:25:24 2021 3.0490264692954e+14] ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:843: Failure running setup function: "/Users/chaitanyasharma/.config/nvim/lua/plugins/init.lua:161: attempt to call global 'user' (a nil value)" [WARN Wed Nov 3 02:26:26 2021 3.0496521439167e+14] ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:197: Plugin "nvim-lspconfig" is used twice! (line 217) [ERROR Thu Nov 4 04:46:54 2021 3.9979428739783e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...r/start/nvim-ts-autotag/lua/nvim-ts-autotag/internal.lua:2: module 'nvim-treesitter.configs' not found: no field package.preload['nvim-treesitter.configs'] no file './nvim-treesitter/configs.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/configs.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/configs.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/configs.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/configs.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/configs/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/configs.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/configs/init.lua' no file './nvim-treesitter/configs.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/configs.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/configs.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/configs.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [ERROR Thu Nov 4 04:46:55 2021 3.9979474166517e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(let):E5108: Error executing lua ...escope/_extensions/session-lens/session-lens-library.lua:1: module 'plenary.path' not found: no field package.preload['plenary.path'] no file './plenary/path.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/plenary/path.lua' no file '/usr/local/share/lua/5.1/plenary/path.lua' no file '/usr/local/share/lua/5.1/plenary/path/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/plenary/path.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/plenary/path/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/plenary/path.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/plenary/path/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/plenary/path.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/plenary/path/init.lua' no file './plenary/path.so' no file '/usr/local/lib/lua/5.1/plenary/path.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/plenary/path.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/plenary/path.so' no file './plenary.so' no file '/usr/local/lib/lua/5.1/plenary.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/plenary.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/plenary.so' [ERROR Thu Nov 4 04:46:55 2021 3.9979478970821e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...ite/pack/packer/start/nvim-gps/lua/nvim-gps/internal.lua:1: module 'nvim-treesitter.query' not found: no field package.preload['nvim-treesitter.query'] no file './nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query/init.lua' no file './nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/query.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/query.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [ERROR Thu Nov 4 04:46:55 2021 3.9979497076363e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua [string ":lua"]:1: module 'cmp' not found: no field package.preload['cmp'] no file './cmp.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/cmp.lua' no file '/usr/local/share/lua/5.1/cmp.lua' no file '/usr/local/share/lua/5.1/cmp/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/cmp.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/cmp/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/cmp.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/cmp/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/cmp.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/cmp/init.lua' no file './cmp.so' no file '/usr/local/lib/lua/5.1/cmp.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/cmp.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/cmp.so' [ERROR Thu Nov 4 04:46:56 2021 3.9979587661379e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...vim-treesitter-refactor/lua/nvim-treesitter-refactor.lua:1: module 'nvim-treesitter.query' not found: no field package.preload['nvim-treesitter.query'] no file './nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query/init.lua' no file './nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/query.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/query.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [ERROR Thu Nov 4 04:47:08 2021 3.9980814764438e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ack/packer/start/packer.nvim/lua/packer/plugin_utils.lua:204: Vim(lua):E5108: Error executing lua ...m/site/pack/packer/start/nvim-ts-rainbow/lua/rainbow.lua:1: module 'nvim-treesitter.query' not found: no field package.preload['nvim-treesitter.query'] no file './nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/luajit-2.1.0-beta3/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query.lua' no file '/usr/local/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query.lua' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/nvim-treesitter/query/init.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query.lua' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/nvim-treesitter/query/init.lua' no file './nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter/query.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter/query.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter/query.so' no file './nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/nvim-treesitter.so' no file '/opt/homebrew/Cellar/luajit-openresty/2.1-20210510/lib/lua/5.1/nvim-treesitter.so' no file '/usr/local/lib/lua/5.1/loadall.so' no file '/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/nvim-treesitter.so' [WARN Sat Nov 20 00:08:26 2021 1.3958195510563e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:552: Potential breaking change in commit de9a2ef of akinsho/nvim-toggleterm.lua [WARN Tue Dec 7 23:10:34 2021 1.3326754406046e+15] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:552: Potential breaking change in commit 913b72d of nvim-treesitter/nvim-treesitter [WARN Thu Dec 16 23:50:55 2021 3.7262624506838e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:552: Potential breaking change in commit 85bfbb8 of numToStr/Comment.nvim [WARN Fri Dec 17 01:51:08 2021 3.7983917512592e+14] ...ite/pack/packer/start/packer.nvim/lua/packer/display.lua:552: Potential breaking change in commit 85bfbb8 of numToStr/Comment.nvim [WARN Fri Dec 24 02:01:47 2021 1.7173031826554e+14] .../site/pack/packer/start/packer.nvim/lua/packer/clean.lua:79: Cleaning cancelled! [ERROR Sun Dec 26 04:06:34 2021 3.52019691575e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:570: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:570: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:06:39 2021 3.5202430167696e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:570: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:570: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:07:49 2021 3.5209458725329e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:571: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:571: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:07:55 2021 3.5210003736933e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:571: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:571: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:08:13 2021 3.5211895145525e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:571: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:571: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:08:47 2021 3.5215293475692e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ite/pack/packer/start/packer.nvim/lua/packer/compile.lua:591: Dependency flutter-tools for { "flutter-snippets" } not found [ERROR Sun Dec 26 04:08:53 2021 3.5215898283383e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:575: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:575: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:08:55 2021 3.5216030198229e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:575: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:575: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:09:06 2021 3.5217187734213e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:09:07 2021 3.5217288784892e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:09:10 2021 3.5217524334329e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:09:12 2021 3.5217731307683e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:09:14 2021 3.5217985272688e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...e/nvim/site/pack/packer/start/packer.nvim/lua/packer.lua:713: Vim(source):E5113: Error while calling lua chunk: .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: Vim(echomsg):E121: Undefined variable: packer stack traceback: [C]: in function 'nvim_command' .../chaitanyasharma/.config/nvim/plugin/packer_compiled.lua:578: in main chunk [C]: in function 'resume' .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:12: in function <.../site/pack/packer/start/packer.nvim/lua/packer/async.lua:11> [ERROR Sun Dec 26 04:18:44 2021 3.5274924370771e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ite/pack/packer/start/packer.nvim/lua/packer/compile.lua:591: Dependency nvim-cmp-lsp for { "nvim-lspconfig" } not found [ERROR Sun Dec 26 04:19:12 2021 3.5277702533483e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ite/pack/packer/start/packer.nvim/lua/packer/compile.lua:591: Dependency nvim-lsp-cmp for { "nvim-lspconfig" } not found [ERROR Sun Dec 26 04:51:33 2021 3.5471866290175e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ite/pack/packer/start/packer.nvim/lua/packer/compile.lua:591: Dependency telescope for { "project.nvim" } not found [ERROR Sun Dec 26 04:51:38 2021 3.5472328375571e+14] .../site/pack/packer/start/packer.nvim/lua/packer/async.lua:20: Error in coroutine: ...ite/pack/packer/start/packer.nvim/lua/packer/compile.lua:591: Dependency telescope for { "project.nvim" } not found ```
packer compiled file Post the contents of `packer_compiled.vim` here ```lua -- Automatically generated packer.nvim plugin loader code if vim.api.nvim_call_function('has', {'nvim-0.5'}) ~= 1 then vim.api.nvim_command('echohl WarningMsg | echom "Invalid Neovim version for packer.nvim! | echohl None"') return end vim.api.nvim_command('packadd packer.nvim') local no_errors, error_msg = pcall(function() local time local profile_info local should_profile = false if should_profile then local hrtime = vim.loop.hrtime profile_info = {} time = function(chunk, start) if start then profile_info[chunk] = hrtime() else profile_info[chunk] = (hrtime() - profile_info[chunk]) / 1e6 end end else time = function(chunk, start) end end local function save_profiles(threshold) local sorted_times = {} for chunk_name, time_taken in pairs(profile_info) do sorted_times[#sorted_times + 1] = {chunk_name, time_taken} end table.sort(sorted_times, function(a, b) return a[2] > b[2] end) local results = {} for i, elem in ipairs(sorted_times) do if not threshold or threshold and elem[2] > threshold then results[i] = elem[1] .. ' took ' .. elem[2] .. 'ms' end end _G._packer = _G._packer or {} _G._packer.profile_output = results end time([[Luarocks path setup]], true) local package_path_str = "/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua" local install_cpath_pattern = "/Users/chaitanyasharma/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so" if not string.find(package.path, package_path_str, 1, true) then package.path = package.path .. ';' .. package_path_str end if not string.find(package.cpath, install_cpath_pattern, 1, true) then package.cpath = package.cpath .. ';' .. install_cpath_pattern end time([[Luarocks path setup]], false) time([[try_loadstring definition]], true) local function try_loadstring(s, component, name) local success, result = pcall(loadstring(s), name, _G.packer_plugins[name]) if not success then vim.schedule(function() vim.api.nvim_notify('packer.nvim: Error running ' .. component .. ' for ' .. name .. ': ' .. result, vim.log.levels.ERROR, {}) end) end return result end time([[try_loadstring definition]], false) time([[Defining packer_plugins]], true) _G.packer_plugins = { ["Comment.nvim"] = { config = { "\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/Comment.nvim", url = "https://github.com/numToStr/Comment.nvim" }, Flutter = { loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/Flutter", url = "https://github.com/Dart-Code/Flutter" }, ["JABS.nvim"] = { commands = { "JABS", "JABSOpen", "J" }, config = { "\27LJ\2\n”\2\0\0\5\0\r\2\0206\0\0\0009\0\1\0009\0\2\0B\0\1\2:\0\1\0006\1\3\0'\3\4\0B\1\2\0029\1\5\0015\3\6\0005\4\a\0=\4\b\0039\4\t\0\24\4\0\4=\4\n\0039\4\v\0\25\4\1\4=\4\f\3B\1\2\1K\0\1\0\brow\vheight\bcol\nwidth\fpreview\1\0\3\vborder\vdouble\vheight\3\30\nwidth\3d\1\0\5\21preview_position\vbottom\vheight\3\n\nwidth\3F\rposition\vcorner\vborder\vsingle\nsetup\tjabs\frequire\18nvim_list_uis\bapi\bvimµæ̙\19™³†ÿ\3\4\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/JABS.nvim", url = "https://github.com/matbme/JABS.nvim" }, ["Sakura.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/Sakura.nvim", url = "https://github.com/numToStr/Sakura.nvim" }, ["SchemaStore.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/SchemaStore.nvim", url = "https://github.com/b0o/SchemaStore.nvim" }, ["aerial.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/aerial.nvim", url = "https://github.com/stevearc/aerial.nvim" }, ["asyncrun.vim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/asyncrun.vim", url = "https://github.com/skywind3000/asyncrun.vim" }, ["auto-session"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/auto-session", url = "https://github.com/rmagatti/auto-session" }, ["awesome-flutter-snippets"] = { load_after = { ["flutter-tools.nvim"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/awesome-flutter-snippets", url = "https://github.com/Nash0x7E2/awesome-flutter-snippets" }, ["cmp-buffer"] = { after_files = { "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-buffer/after/plugin/cmp_buffer.lua" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-buffer", url = "https://github.com/hrsh7th/cmp-buffer" }, ["cmp-cmdline"] = { after_files = { "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-cmdline/after/plugin/cmp_cmdline.lua" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-cmdline", url = "https://github.com/hrsh7th/cmp-cmdline" }, ["cmp-cmdline-history"] = { after_files = { "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-cmdline-history/after/plugin/cmp_cmdline_history.lua" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-cmdline-history", url = "https://github.com/dmitmel/cmp-cmdline-history" }, ["cmp-copilot"] = { after_files = { "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-copilot/after/plugin/cmp_copilot.lua" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-copilot", url = "https://github.com/hrsh7th/cmp-copilot" }, ["cmp-emoji"] = { after_files = { "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-emoji/after/plugin/cmp_emoji.lua" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-emoji", url = "https://github.com/hrsh7th/cmp-emoji" }, ["cmp-nvim-lsp"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp", url = "https://github.com/hrsh7th/cmp-nvim-lsp" }, ["cmp-nvim-lua"] = { after_files = { "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-nvim-lua/after/plugin/cmp_nvim_lua.lua" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-nvim-lua", url = "https://github.com/hrsh7th/cmp-nvim-lua" }, ["cmp-path"] = { after_files = { "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-path/after/plugin/cmp_path.lua" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-path", url = "https://github.com/hrsh7th/cmp-path" }, ["cmp-vsnip"] = { after_files = { "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-vsnip/after/plugin/cmp_vsnip.vim" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/cmp-vsnip", url = "https://github.com/hrsh7th/cmp-vsnip" }, ["conflict-marker.vim"] = { config = { "\27LJ\2\n³\1\0\0\2\0\b\0\r6\0\0\0009\0\1\0'\1\3\0=\1\2\0006\0\0\0009\0\1\0'\1\5\0=\1\4\0006\0\0\0009\0\1\0'\1\a\0=\1\6\0K\0\1\0\17^>>>>>>> .*$\24conflict_marker_end\17^||||||| .*$%conflict_marker_common_ancestors\17^<<<<<<< .*$\26conflict_marker_begin\6g\bvim\0" }, keys = { { "n", "]x" }, { "n", "[x" } }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/conflict-marker.vim", url = "https://github.com/rhysd/conflict-marker.vim" }, ["copilot.vim"] = { loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/copilot.vim", url = "https://github.com/github/copilot.vim" }, ["dart-code"] = { load_after = { ["flutter-tools.nvim"] = true }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dart-code", url = "/Users/chaitanyasharma/.cache/nvim/dart-code" }, ["dart-vim-plugin"] = { config = { "\27LJ\2\nh\0\0\3\0\5\0\t6\0\0\0009\0\1\0)\1\0\0=\1\2\0006\0\0\0009\0\3\0'\2\4\0B\0\2\1K\0\1\0#let dart_html_in_string=v:true\bcmd\24dart_format_on_save\6g\bvim\0" }, loaded = false, needs_bufread = true, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dart-vim-plugin", url = "https://github.com/dart-lang/dart-vim-plugin" }, ["dartlang-snippets"] = { loaded = false, needs_bufread = true, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dartlang-snippets", url = "https://github.com/natebosch/dartlang-snippets" }, ["dependency-assist.nvim"] = { config = { "\27LJ\2\n?\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\22dependency_assist\frequire\0" }, load_after = { ["flutter-tools.nvim"] = true }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dependency-assist.nvim", url = "https://github.com/akinsho/dependency-assist.nvim" }, ["filetype.nvim"] = { config = { "\27LJ\2\n4\0\0\2\0\3\0\0056\0\0\0009\0\1\0)\1\1\0=\1\2\0K\0\1\0\23did_load_filetypes\6g\bvim\0" }, loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/filetype.nvim", url = "https://github.com/nathom/filetype.nvim" }, ["flutter-snippets"] = { load_after = { ["flutter-tools.nvim"] = true }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/flutter-snippets", url = "https://github.com/Alexisvt/flutter-snippets" }, ["flutter-tools.nvim"] = { after = { "awesome-flutter-snippets", "dart-code", "flutter-snippets", "dependency-assist.nvim" }, config = { "require 'lsp.dart-ls'" }, load_after = { ["nvim-lspconfig"] = true }, loaded = false, needs_bufread = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/flutter-tools.nvim", url = "https://github.com/akinsho/flutter-tools.nvim" }, ["friendly-snippets"] = { load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/friendly-snippets", url = "https://github.com/rafamadriz/friendly-snippets" }, ["gitsigns.nvim"] = { config = { "require 'plugins.gitsigns'" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/gitsigns.nvim", url = "https://github.com/lewis6991/gitsigns.nvim" }, hop = { config = { "require 'plugins.hop'" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/hop", url = "https://github.com/phaazon/hop.nvim" }, ["impatient.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/impatient.nvim", url = "https://github.com/lewis6991/impatient.nvim" }, ["kanagawa.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/kanagawa.nvim", url = "https://github.com/rebelot/kanagawa.nvim" }, ["lsp-fastaction.nvim"] = { config = { "require 'plugins.lsp-fastaction'" }, load_after = { ["nvim-lspconfig"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/lsp-fastaction.nvim", url = "https://github.com/windwp/lsp-fastaction.nvim" }, ["lsp-trouble.nvim"] = { config = { "require 'plugins.trouble'" }, load_after = { ["nvim-lspconfig"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/lsp-trouble.nvim", url = "https://github.com/folke/lsp-trouble.nvim" }, ["lsp_extensions.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/lsp_extensions.nvim", url = "https://github.com/nvim-lua/lsp_extensions.nvim" }, ["lsp_signature.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/lsp_signature.nvim", url = "https://github.com/ray-x/lsp_signature.nvim" }, ["lualine-lsp-progress"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/lualine-lsp-progress", url = "https://github.com/arkav/lualine-lsp-progress" }, ["lualine.nvim"] = { config = { "require 'plugins.themes.lualine'" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/lualine.nvim", url = "https://github.com/hoob3rt/lualine.nvim" }, ["null-ls.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/null-ls.nvim", url = "https://github.com/jose-elias-alvarez/null-ls.nvim" }, ["nvcode-color-schemes.vim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/nvcode-color-schemes.vim", url = "https://github.com/christianchiarulli/nvcode-color-schemes.vim" }, ["nvim-autopairs"] = { config = { "require 'plugins.nvim-autopairs'" }, load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/nvim-autopairs", url = "https://github.com/windwp/nvim-autopairs" }, ["nvim-cmp"] = { after = { "cmp-cmdline-history", "nvim-autopairs", "cmp-cmdline", "cmp-copilot", "cmp-nvim-lua", "cmp-vsnip", "friendly-snippets", "cmp-emoji", "cmp-buffer", "vim-vsnip", "cmp-path" }, config = { "require 'plugins.nvim-cmp'" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/nvim-cmp", url = "https://github.com/hrsh7th/nvim-cmp" }, ["nvim-colorizer.lua"] = { commands = { "ColorizerToggle" }, config = { "\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14colorizer\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/nvim-colorizer.lua", url = "https://github.com/norcalli/nvim-colorizer.lua" }, ["nvim-dap"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/nvim-dap", url = "https://github.com/mfussenegger/nvim-dap" }, ["nvim-dap-ui"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/nvim-dap-ui", url = "https://github.com/rcarriga/nvim-dap-ui" }, ["nvim-dap-virtual-text"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/nvim-dap-virtual-text", url = "https://github.com/theHamsta/nvim-dap-virtual-text" }, ["nvim-lspconfig"] = { after = { "lsp-trouble.nvim", "flutter-tools.nvim", "rust-tools.nvim", "renamer.nvim", "lsp-fastaction.nvim" }, config = { "\27LJ\2\n½\2\0\0\3\0\r\0%6\0\0\0'\2\1\0B\0\2\0016\0\0\0'\2\2\0B\0\2\0016\0\0\0'\2\3\0B\0\2\0016\0\0\0'\2\4\0B\0\2\0016\0\0\0'\2\5\0B\0\2\0016\0\0\0'\2\6\0B\0\2\0016\0\0\0'\2\a\0B\0\2\0016\0\0\0'\2\b\0B\0\2\0016\0\0\0'\2\t\0B\0\2\0016\0\0\0'\2\n\0B\0\2\0016\0\0\0'\2\v\0B\0\2\0016\0\0\0'\2\f\0B\0\2\1K\0\1\0\16lsp.yaml-ls\19lsp.pyright-ls\17lsp.nvim-lsp\16lsp.null-ls\15lsp.lua-ls\17lsp.js-ts-ls\16lsp.java-ls\16lsp.html-ls\15lsp.css-ls\18lsp.clangd-ls\16lsp.bash-ls\21lsp.lsp-settings\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/nvim-lspconfig", url = "https://github.com/neovim/nvim-lspconfig" }, ["nvim-toggleterm.lua"] = { commands = { "ToggleTerm" }, config = { "require 'plugins.toggleterm'" }, keys = { { "n", "" }, { "n", "tf" }, { "n", "tg" }, { "n", "tt" }, { "n", "tr" } }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/nvim-toggleterm.lua", url = "https://github.com/akinsho/nvim-toggleterm.lua" }, ["nvim-tree.lua"] = { commands = { "NvimTreeToggle" }, config = { "require 'plugins.nvim-tree'" }, keys = { { "n", "e" }, { "n", "n" } }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/nvim-tree.lua", url = "https://github.com/kyazdani42/nvim-tree.lua" }, ["nvim-treesitter"] = { after = { "nvim-ts-rainbow" }, config = { "require 'plugins.nvim-treesitter'" }, loaded = false, needs_bufread = true, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/nvim-treesitter", url = "https://github.com/nvim-treesitter/nvim-treesitter" }, ["nvim-ts-rainbow"] = { load_after = { ["nvim-treesitter"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/nvim-ts-rainbow", url = "https://github.com/p00f/nvim-ts-rainbow" }, ["nvim-web-devicons"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/nvim-web-devicons", url = "https://github.com/kyazdani42/nvim-web-devicons" }, ["packer.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/packer.nvim", url = "https://github.com/wbthomason/packer.nvim" }, ["plenary.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/plenary.nvim", url = "https://github.com/nvim-lua/plenary.nvim" }, ["popup.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/popup.nvim", url = "https://github.com/nvim-lua/popup.nvim" }, ["project.nvim"] = { config = { "\27LJ\2\n¥\3\0\0\6\0\18\0\0256\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\4\0=\3\5\0025\3\6\0=\3\a\0025\3\b\0=\3\t\0026\3\n\0009\3\v\0039\3\f\3'\5\r\0B\3\2\2=\3\14\2B\0\2\0016\0\0\0'\2\15\0B\0\2\0029\0\16\0'\2\17\0B\0\2\1K\0\1\0\rprojects\19load_extension\14telescope\rdatapath\tdata\fstdpath\afn\bvim\15ignore_lsp\1\2\0\0\fnull-ls\rpatterns\1\14\0\0\17pubspec.yaml\17package.json\14config.py\rsetup.py\15cargo.toml\rMakefile\rmakefile\t.git\15.gitignore\v_darcs\b.hg\t.bzr\t.svn\22detection_methods\1\3\0\0\blsp\fpattern\1\0\3\17silent_chdir\2\16show_hidden\1\16manual_mode\1\nsetup\17project_nvim\frequire\0" }, load_after = {}, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/project.nvim", url = "https://github.com/ahmedkhalf/project.nvim" }, ["refactoring.nvim"] = { config = { "\27LJ\2\n=\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\16refactoring\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/refactoring.nvim", url = "https://github.com/ThePrimeagen/refactoring.nvim" }, ["renamer.nvim"] = { config = { "require 'lsp.lsp-rename'" }, load_after = { ["nvim-lspconfig"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/renamer.nvim", url = "https://github.com/filipdutescu/renamer.nvim" }, ["rose-pine"] = { config = { "\27LJ\2\nŽ\1\0\0\2\0\6\0\r6\0\0\0009\0\1\0'\1\3\0=\1\2\0006\0\0\0009\0\1\0+\1\2\0=\1\4\0006\0\0\0009\0\1\0+\1\2\0=\1\5\0K\0\1\0!rose_pine_disable_background\29rose_pine_enable_italics\tbase\22rose_pine_variant\6g\bvim\0" }, loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/rose-pine", url = "https://github.com/rose-pine/neovim" }, ["rust-tools.nvim"] = { config = { "\27LJ\2\nZ\0\0\3\0\4\0\n6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\0016\0\0\0'\2\3\0B\0\2\1K\0\1\0\22lsp.rust-tools-ls\nsetup\15rust-tools\frequire\0" }, load_after = { ["nvim-lspconfig"] = true }, loaded = false, needs_bufread = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/rust-tools.nvim", url = "https://github.com/simrat39/rust-tools.nvim" }, ["session-lens"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/session-lens", url = "https://github.com/rmagatti/session-lens" }, snap = { config = { "require 'plugins.snap'" }, keys = { { "n", "" }, { "n", "fg" }, { "n", "fb" }, { "n", "fo" } }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/snap", url = "https://github.com/camspiers/snap" }, ["surround.nvim"] = { config = { "\27LJ\2\n:\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\rsurround\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/surround.nvim", url = "https://github.com/blackCauldron7/surround.nvim" }, ["telescope-dap.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/telescope-dap.nvim", url = "https://github.com/nvim-telescope/telescope-dap.nvim" }, ["telescope.nvim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/telescope.nvim", url = "https://github.com/nvim-telescope/telescope.nvim" }, ["tokyonight.nvim"] = { config = { "\27LJ\2\n±\4\0\0\2\0\17\00116\0\0\0009\0\1\0005\1\3\0=\1\2\0006\0\0\0009\0\1\0+\1\2\0=\1\4\0006\0\0\0009\0\1\0+\1\2\0=\1\5\0006\0\0\0009\0\1\0*\1\0\0=\1\6\0006\0\0\0009\0\1\0+\1\1\0=\1\a\0006\0\0\0009\0\1\0+\1\2\0=\1\b\0006\0\0\0009\0\1\0+\1\2\0=\1\t\0006\0\0\0009\0\1\0+\1\2\0=\1\n\0006\0\0\0009\0\1\0+\1\1\0=\1\v\0006\0\0\0009\0\1\0005\1\r\0=\1\f\0006\0\0\0009\0\1\0'\1\15\0=\1\14\0006\0\0\0009\0\1\0+\1\1\0=\1\16\0K\0\1\0\27tokyonight_transparent\nstorm\21tokyonight_style\1\2\0\0\vpacker\24tokyonight_sidebars tokyonight_italic_variables\31tokyonight_italic_keywords tokyonight_italic_functions\31tokyonight_italic_comments(tokyonight_hide_inactive_statusline\30tokyonight_day_brightness\28tokyonight_dark_sidebar\26tokyonight_dark_float\1\0\2\abg\f#262C3A\vborder\f#7aa2f7\22tokyonight_colors\6g\bvimç̙³\6³æÌþ\3\0" }, loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/tokyonight.nvim", url = "https://github.com/folke/tokyonight.nvim" }, ["twilight.nvim"] = { commands = { "Twilight", "TwilightEnable" }, config = { "\27LJ\2\nq\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\fdimming\1\0\1\fcontext\3\15\1\0\2\rinactive\2\nalpha\4\0€€Àþ\3\nsetup\rtwilight\frequire\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/twilight.nvim", url = "https://github.com/folke/twilight.nvim" }, ["vim-dispatch"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/vim-dispatch", url = "https://github.com/tpope/vim-dispatch" }, ["vim-dispatch-neovim"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/vim-dispatch-neovim", url = "https://github.com/radenling/vim-dispatch-neovim" }, ["vim-fish"] = { loaded = false, needs_bufread = true, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-fish", url = "https://github.com/dag/vim-fish" }, ["vim-graphql"] = { loaded = false, needs_bufread = true, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-graphql", url = "https://github.com/jparise/vim-graphql" }, ["vim-repeat"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/vim-repeat", url = "https://github.com/tpope/vim-repeat" }, ["vim-test"] = { loaded = true, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/start/vim-test", url = "https://github.com/vim-test/vim-test" }, ["vim-ultest"] = { config = { "\27LJ\2\n6\0\0\2\0\3\0\0056\0\0\0009\0\1\0)\1\0\0=\1\2\0K\0\1\0\25ultest_output_on_run\6g\bvim\0" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-ultest", url = "https://github.com/rcarriga/vim-ultest" }, ["vim-vsnip"] = { load_after = { ["nvim-cmp"] = true }, loaded = false, needs_bufread = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-vsnip", url = "https://github.com/hrsh7th/vim-vsnip" }, ["vim-workman"] = { commands = { "Workman" }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-workman", url = "https://github.com/nicwest/vim-workman" }, ["zen-mode.nvim"] = { commands = { "ZenMode" }, config = { "\27LJ\2\n \1\0\0\5\0\n\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\0025\3\a\0005\4\6\0=\4\b\3=\3\t\2B\0\2\1K\0\1\0\fplugins\rgitsigns\1\0\0\1\0\1\fenabled\2\vwindow\1\0\0\1\0\2\rbackdrop\4\0€€ ÿ\3\nwidth\4š³æÌ\t™³¦ÿ\3\nsetup\rzen-mode\frequire\0" }, keys = { { "", "z" } }, loaded = false, needs_bufread = false, only_cond = false, path = "/Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/zen-mode.nvim", url = "https://github.com/folke/zen-mode.nvim" } } time([[Defining packer_plugins]], false) -- Config for: tokyonight.nvim time([[Config for tokyonight.nvim]], true) try_loadstring("\27LJ\2\n±\4\0\0\2\0\17\00116\0\0\0009\0\1\0005\1\3\0=\1\2\0006\0\0\0009\0\1\0+\1\2\0=\1\4\0006\0\0\0009\0\1\0+\1\2\0=\1\5\0006\0\0\0009\0\1\0*\1\0\0=\1\6\0006\0\0\0009\0\1\0+\1\1\0=\1\a\0006\0\0\0009\0\1\0+\1\2\0=\1\b\0006\0\0\0009\0\1\0+\1\2\0=\1\t\0006\0\0\0009\0\1\0+\1\2\0=\1\n\0006\0\0\0009\0\1\0+\1\1\0=\1\v\0006\0\0\0009\0\1\0005\1\r\0=\1\f\0006\0\0\0009\0\1\0'\1\15\0=\1\14\0006\0\0\0009\0\1\0+\1\1\0=\1\16\0K\0\1\0\27tokyonight_transparent\nstorm\21tokyonight_style\1\2\0\0\vpacker\24tokyonight_sidebars tokyonight_italic_variables\31tokyonight_italic_keywords tokyonight_italic_functions\31tokyonight_italic_comments(tokyonight_hide_inactive_statusline\30tokyonight_day_brightness\28tokyonight_dark_sidebar\26tokyonight_dark_float\1\0\2\abg\f#262C3A\vborder\f#7aa2f7\22tokyonight_colors\6g\bvimç̙³\6³æÌþ\3\0", "config", "tokyonight.nvim") time([[Config for tokyonight.nvim]], false) -- Config for: rose-pine time([[Config for rose-pine]], true) try_loadstring("\27LJ\2\nŽ\1\0\0\2\0\6\0\r6\0\0\0009\0\1\0'\1\3\0=\1\2\0006\0\0\0009\0\1\0+\1\2\0=\1\4\0006\0\0\0009\0\1\0+\1\2\0=\1\5\0K\0\1\0!rose_pine_disable_background\29rose_pine_enable_italics\tbase\22rose_pine_variant\6g\bvim\0", "config", "rose-pine") time([[Config for rose-pine]], false) -- Config for: filetype.nvim time([[Config for filetype.nvim]], true) try_loadstring("\27LJ\2\n4\0\0\2\0\3\0\0056\0\0\0009\0\1\0)\1\1\0=\1\2\0K\0\1\0\23did_load_filetypes\6g\bvim\0", "config", "filetype.nvim") time([[Config for filetype.nvim]], false) -- Load plugins in order defined by `after` time([[Sequenced loading]], true) vim.cmd [[ packadd telescope.nvim ]] time([[Sequenced loading]], false) -- Command lazy-loads time([[Defining lazy-load commands]], true) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file ToggleTerm lua require("packer.load")({'nvim-toggleterm.lua'}, { cmd = "ToggleTerm", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file J lua require("packer.load")({'JABS.nvim'}, { cmd = "J", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Workman lua require("packer.load")({'vim-workman'}, { cmd = "Workman", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file ColorizerToggle lua require("packer.load")({'nvim-colorizer.lua'}, { cmd = "ColorizerToggle", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Twilight lua require("packer.load")({'twilight.nvim'}, { cmd = "Twilight", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TwilightEnable lua require("packer.load")({'twilight.nvim'}, { cmd = "TwilightEnable", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file NvimTreeToggle lua require("packer.load")({'nvim-tree.lua'}, { cmd = "NvimTreeToggle", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file JABS lua require("packer.load")({'JABS.nvim'}, { cmd = "JABS", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file JABSOpen lua require("packer.load")({'JABS.nvim'}, { cmd = "JABSOpen", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file ZenMode lua require("packer.load")({'zen-mode.nvim'}, { cmd = "ZenMode", l1 = , l2 = , bang = , args = , mods = "" }, _G.packer_plugins)]]) time([[Defining lazy-load commands]], false) -- Keymap lazy-loads time([[Defining lazy-load keymaps]], true) vim.cmd [[nnoremap tr lua require("packer.load")({'nvim-toggleterm.lua'}, { keys = "leader>tr", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap n lua require("packer.load")({'nvim-tree.lua'}, { keys = "leader>n", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap e lua require("packer.load")({'nvim-tree.lua'}, { keys = "leader>e", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap fo lua require("packer.load")({'snap'}, { keys = "leader>fo", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap fb lua require("packer.load")({'snap'}, { keys = "leader>fb", prefix = "" }, _G.packer_plugins)]] vim.cmd [[noremap z lua require("packer.load")({'zen-mode.nvim'}, { keys = "leader>z", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap fg lua require("packer.load")({'snap'}, { keys = "leader>fg", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap [x lua require("packer.load")({'conflict-marker.vim'}, { keys = "[x", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap lua require("packer.load")({'snap'}, { keys = "leader>leader>", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap lua require("packer.load")({'nvim-toggleterm.lua'}, { keys = "c-t>", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap ]x lua require("packer.load")({'conflict-marker.vim'}, { keys = "]x", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap tg lua require("packer.load")({'nvim-toggleterm.lua'}, { keys = "leader>tg", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap tt lua require("packer.load")({'nvim-toggleterm.lua'}, { keys = "leader>tt", prefix = "" }, _G.packer_plugins)]] vim.cmd [[nnoremap tf lua require("packer.load")({'nvim-toggleterm.lua'}, { keys = "leader>tf", prefix = "" }, _G.packer_plugins)]] time([[Defining lazy-load keymaps]], false) vim.cmd [[augroup packer_load_aucmds]] vim.cmd [[au!]] -- Filetype lazy-loads time([[Defining lazy-load filetype autocommands]], true) vim.cmd [[au FileType yaml ++once lua require("packer.load")({'dependency-assist.nvim'}, { ft = "yaml" }, _G.packer_plugins)]] vim.cmd [[au FileType fish ++once lua require("packer.load")({'vim-fish'}, { ft = "fish" }, _G.packer_plugins)]] vim.cmd [[au FileType javascript ++once lua require("packer.load")({'refactoring.nvim'}, { ft = "javascript" }, _G.packer_plugins)]] vim.cmd [[au FileType typescript ++once lua require("packer.load")({'refactoring.nvim'}, { ft = "typescript" }, _G.packer_plugins)]] vim.cmd [[au FileType python ++once lua require("packer.load")({'refactoring.nvim'}, { ft = "python" }, _G.packer_plugins)]] vim.cmd [[au FileType lua ++once lua require("packer.load")({'refactoring.nvim'}, { ft = "lua" }, _G.packer_plugins)]] vim.cmd [[au FileType dart ++once lua require("packer.load")({'dart-code', 'Flutter', 'dart-vim-plugin', 'dartlang-snippets', 'flutter-snippets'}, { ft = "dart" }, _G.packer_plugins)]] vim.cmd [[au FileType go ++once lua require("packer.load")({'refactoring.nvim'}, { ft = "go" }, _G.packer_plugins)]] vim.cmd [[au FileType c ++once lua require("packer.load")({'refactoring.nvim'}, { ft = "c" }, _G.packer_plugins)]] vim.cmd [[au FileType graphql ++once lua require("packer.load")({'vim-graphql'}, { ft = "graphql" }, _G.packer_plugins)]] vim.cmd [[au FileType cpp ++once lua require("packer.load")({'refactoring.nvim'}, { ft = "cpp" }, _G.packer_plugins)]] time([[Defining lazy-load filetype autocommands]], false) -- Event lazy-loads time([[Defining lazy-load event autocommands]], true) vim.cmd [[au CmdlineEnter * ++once lua require("packer.load")({'nvim-cmp'}, { event = "CmdlineEnter *" }, _G.packer_plugins)]] vim.cmd [[au BufRead * ++once lua require("packer.load")({'nvim-lspconfig', 'gitsigns.nvim', 'hop', 'vim-ultest'}, { event = "BufRead *" }, _G.packer_plugins)]] vim.cmd [[au BufWinEnter * ++once lua require("packer.load")({'surround.nvim', 'Comment.nvim', 'copilot.vim', 'nvim-treesitter', 'lualine.nvim', 'project.nvim'}, { event = "BufWinEnter *" }, _G.packer_plugins)]] vim.cmd [[au InsertEnter * ++once lua require("packer.load")({'nvim-cmp'}, { event = "InsertEnter *" }, _G.packer_plugins)]] time([[Defining lazy-load event autocommands]], false) vim.cmd("augroup END") vim.cmd [[augroup filetypedetect]] time([[Sourcing ftdetect script at: /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-fish/ftdetect/fish.vim]], true) vim.cmd [[source /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-fish/ftdetect/fish.vim]] time([[Sourcing ftdetect script at: /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-fish/ftdetect/fish.vim]], false) time([[Sourcing ftdetect script at: /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dart-vim-plugin/ftdetect/dart.vim]], true) vim.cmd [[source /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dart-vim-plugin/ftdetect/dart.vim]] time([[Sourcing ftdetect script at: /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dart-vim-plugin/ftdetect/dart.vim]], false) time([[Sourcing ftdetect script at: /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-graphql/ftdetect/graphql.vim]], true) vim.cmd [[source /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-graphql/ftdetect/graphql.vim]] time([[Sourcing ftdetect script at: /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/vim-graphql/ftdetect/graphql.vim]], false) time([[Sourcing ftdetect script at: /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dartlang-snippets/ftdetect/gitignore.vim]], true) vim.cmd [[source /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dartlang-snippets/ftdetect/gitignore.vim]] time([[Sourcing ftdetect script at: /Users/chaitanyasharma/.local/share/nvim/site/pack/packer/opt/dartlang-snippets/ftdetect/gitignore.vim]], false) vim.cmd("augroup END") if should_profile then save_profiles() end end) if not no_errors then vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None') end ```
CallumHoward commented 2 years ago

I'm also seeing this on

Happy to provide more details, ~/.cache/nvim/packer.nvim.log doesn't appear to have recent log entries so I'm not sure if verbosity needs to be set...

bryant-the-coder commented 2 years ago

same... but on windows

max397574 commented 2 years ago

@wbthomason this is still a problem it's rly annoying because u can no longer sync because it gets stuck at updating so it never compiles

wbthomason commented 2 years ago

Sorry, but I'm going to need a bit more information to reproduce this (I've never experienced this error).

Can you please describe the sequence of actions you take to trigger this (e.g. "open neovim, run sync, edit plugin spec and save, run sync again without closing neovim")?

Does this happen deterministically or stochastically? If it's deterministic, does it persist after a neovim restart?

max397574 commented 2 years ago
  1. open neovim
  2. run packer update or packer sync get this (waiting for 15 minutes (never tried more) doesn't change anything): (for about 4-8 plugins) packer_bug The plugins on which this happens are always different. This will happen every time I try to update or sync (closing neovim, clearing lua cache etc doesn't change anything) I had this before I think nuking packer folder was the thing that solved it
wbthomason commented 2 years ago

So it deterministically hangs on all update or sync operations? Starting when?

Does this persist if you have max_jobs set to something limited, e.g. 1 for the most extreme case?

max397574 commented 2 years ago

no I set it to 8 (1 was too slow imo xD) and it no longer was stuck

CallumHoward commented 2 years ago

max_jobs=1 worked for me, just very slow now.

max397574 commented 2 years ago

you can also set it to a higher number (worked for me)

wbthomason commented 2 years ago

Ok, so this seems to be a deadlock bug in the async library. The max_jobs workaround seems OK for now, but I'll need to dig into the async code to see if I can figure out when a deadlock happens.

Did this start after a particular date for anyone? The async code hasn't been touched almost since packer was first operational, and I have never been able to reproduce this issue, so any information you can provide on what makes this happen would be very useful.

max397574 commented 2 years ago

no I already had it multiple times before and it just went away sometimes

CallumHoward commented 2 years ago

I believe I started seeing it for the first time sometime in last December. Before I saw it I had no problems. After I saw it, it failed every time for me. I only changed a couple of plugins in my plugin list. I think I have ~47 plugins.

horseinthesky commented 2 years ago

I have no idea how it can be connected but I only experience this when on VPN (wireguard) connection. VPN disabled - 45 of 45 successful updates. VPN enabled - 5 to 7 success 38-40 stuck.

max_jobs changes nothing for me.

languitar commented 2 years ago

In my case this only happens on my quite old Macbook. All (more powerful) Linux machines never ended up in this situation. Maybe this becomes more likely with slower systems?

lewis6991 commented 2 years ago

Happens on my Macbook M1 Pro so I don't think it is limited to slow systems.

zsmatrix62 commented 2 years ago

im not sure what's going on in behind this issue but after setting max_jobs = 5 it works for me ....

okuuva commented 2 years ago

For me this started happening after the number of plugins went over 60 or something like that. At first just 1 plugin stuck, then more and more until I got to 77 plugins and 5 of them (not always the same ones I think) stuck. Setting max_jobs = 64 fixed the problem at least for now.

I did some (not very thorough) testing and it seems that setting max_jobs < (total number of plugins - number of plugins stuck at "checking commit") works at least most of the time. With max_jobs = 72 sync failed maybe once in ten tries and with 64 I have yet to see any failures to sync.

Hope this helps someone, if not in debugging then at least figuring a proper number for max_jobs as a workaround.

sharksforarms commented 2 years ago

possibly related: https://github.com/hrsh7th/cmp-vsnip/pull/4 fixed an error I was having with Packer on first install/update

cleong14 commented 1 year ago

For me this started happening after the number of plugins went over 60 or something like that. At first just 1 plugin stuck, then more and more until I got to 77 plugins and 5 of them (not always the same ones I think) stuck. Setting max_jobs = 64 fixed the problem at least for now.

I did some (not very thorough) testing and it seems that setting max_jobs < (total number of plugins - number of plugins stuck at "checking commit") works at least most of the time. With max_jobs = 72 sync failed maybe once in ten tries and with 64 I have yet to see any failures to sync.

This worked for me. Overall consistency and stability improved for me after setting max_jobs = 64; anything higher and I started seeing failures again too.