-
-
Notifications
You must be signed in to change notification settings - Fork 268
Description
- `nvim --version`:
NVIM v0.6.0-dev Build type: Release LuaJIT 2.1.0-beta3 Compilation: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_TS_HAS_SET_MATCH_LIMIT -O2 -DNDEBUG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconversion -Wmissing-prototypes -Wimplicit-fallthrough -Wvla -fstack-protector-strong -fno-common -fdiagnostics-color=always -DINCLUDE_GENERATED_DECLARATIONS -D_GNU_SOURCE -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -DMIN_LOG_LEVEL=3 -I/Users/mitchell/.asdf/downloads/neovim/ref-master/build/config -I/Users/mitchell/.asdf/downloads/neovim/ref-master/src -I/Users/mitchell/.asdf/downloads/neovim/ref-master/.deps/usr/include -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk/usr/include -I/opt/homebrew/opt/gettext/include -I/Users/mitchell/.asdf/downloads/neovim/ref-master/build/src/nvim/auto -I/Users/mitchell/.asdf/downloads/neovim/ref-master/build/include Compiled by [email protected]Features: +acl +iconv +tui
See ":help feature-compile"system vimrc file: "$VIM/sysinit.vim"
fall-back for $VIM: "/share/nvim"Run :checkhealth for more info
git --version
: git version 2.32.0- Operating system/version: macOS 11.4 (M1 MacBook Air)
- Terminal name/version: Alacritty 0.8.0, tmux 3.2a
Steps to reproduce
- Run
:PackerInstall
Actual behaviour
- Crashses nvim
Expected behaviour
- Installs plugins
packer files
Plugin specification file(s)
local install_path = vim.fn.stdpath("data") .. "/site/pack/packer/opt/packer.nvim"
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
vim.cmd("!git clone https://github.com/wbthomason/packer.nvim " .. install_path)
end
vim.cmd [[packadd packer.nvim]]
local startup = require("packer").startup
startup(
function(use, use_rocks)
use {"wbthomason/packer.nvim", opt = true}
use "tjdevries/nlua.nvim"
use "norcalli/nvim.lua"
use "tpope/vim-repeat"
use "bakpakin/fennel.vim"
use "sainnhe/vim-color-forest-night"
use "christoomey/vim-tmux-runner"
use {"rrethy/vim-hexokinase", run = "make hexokinase"}
use "alvan/vim-closetag"
use "junegunn/goyo.vim"
use "AndrewRadev/splitjoin.vim"
use "tpope/vim-vinegar"
use "tpope/vim-commentary"
use "tpope/vim-dispatch"
use "vim-ruby/vim-ruby"
use "tpope/vim-rsi"
use "elixir-editors/vim-elixir"
-- use "tpope/vim-endwise"
use "tpope/vim-fugitive"
use "junegunn/gv.vim"
use "airblade/vim-gitgutter"
use "tpope/vim-rails"
use "tpope/vim-sensible"
use "vim-test/vim-test"
use "christoomey/vim-tmux-navigator"
use "tpope/vim-liquid"
use "pangloss/vim-javascript"
use "isRuslan/vim-es6"
-- use "mxw/vim-jsx"
-- use "jiangmiao/auto-pairs"
use "tpope/vim-surround"
use "tpope/vim-eunuch"
use "tpope/vim-projectionist"
use "avakhov/vim-yaml"
use "chr4/nginx.vim"
use "mattn/emmet-vim"
use "tpope/vim-markdown"
use "matze/vim-move"
-- use "Yggdroot/indentLine"
use {"lukas-reineke/indent-blankline.nvim"}
use {
"junegunn/fzf",
run = function()
vim.fn"fzf#install"
end
}
use "junegunn/fzf.vim"
use "farmergreg/vim-lastplace"
use {"mg979/vim-visual-multi", branch = "master"}
use "ekalinin/Dockerfile.vim"
use "kana/vim-textobj-user"
use "amiralies/vim-textobj-elixir"
use "stsewd/fzf-checkout.vim"
use "reedes/vim-wordy"
use "neovim/nvim-lspconfig"
use "hrsh7th/nvim-compe"
use "hrsh7th/vim-vsnip"
use "hrsh7th/vim-vsnip-integ"
use "kabouzeid/nvim-lspinstall"
use "nvim-lua/popup.nvim"
use "nvim-lua/plenary.nvim"
use "nvim-lua/telescope.nvim"
use "APZelos/blamer.nvim"
use "hashivim/vim-terraform"
use "pwntester/octo.nvim"
-- use {
-- "ojroques/nvim-lspfuzzy",
-- requires = {
-- {"junegunn/fzf"},
-- {"junegunn/fzf.vim"} -- to enable preview (optional)
-- }
-- }
use {
"glacambre/firenvim",
run = function()
vim.fn["firenvim#install"](0)
end
}
use "powerman/vim-plugin-AnsiEsc"
use {
"nvim-treesitter/nvim-treesitter",
run = function()
vim.cmd [[TSUpdate]]
end
}
use "voldikss/vim-floaterm"
use "kassio/neoterm"
use {
"npxbr/glow.nvim",
run = function()
vim.cmd [[GlowInstall]]
end
}
use "glepnir/lspsaga.nvim"
use "rktjmp/lush.nvim"
use "mjlbach/neovim-ui"
-- use "~/Development/thicc-forest"
use {"ojroques/nvim-hardline"}
use {"tjdevries/astronauta.nvim"}
use {
"megalithic/zk.nvim",
requires = {{"vijaymarupudi/nvim-fzf"}}
}
use {"Olical/conjure"}
use {"wlangstroth/vim-racket"}
use {
"jpalardy/vim-slime",
run = function()
vim.cmd [[let g:slime_target = "neovim"]]
end
}
use_rocks {"underscore"}
end
)
require("packer.luarocks").setup_paths()
_ = require("underscore")
packer log file
[DEBUG Mon Jul 19 23:45:15 2021 8.1090564144396e+14] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:176: Updating FS state
[DEBUG Mon Jul 19 23:45:37 2021 8.1092691669521e+14] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:361: packer.install: requiring modules
[DEBUG Mon Jul 19 23:45:37 2021 8.1092692060854e+14] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:308: Processing plugin specs
[DEBUG Mon Jul 19 23:45:37 2021 8.1092693084992e+14] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:176: Updating FS state
[DEBUG Mon Jul 19 23:46:16 2021 8.1096661268867e+14] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:361: packer.install: requiring modules
[DEBUG Mon Jul 19 23:46:16 2021 8.1096661706792e+14] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:308: Processing plugin specs
[DEBUG Mon Jul 19 23:46:16 2021 8.1096662748558e+14] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:176: Updating FS state
[DEBUG Mon Jul 19 23:56:48 2021 8.1159809896225e+14] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:361: packer.install: requiring modules
[DEBUG Mon Jul 19 23:56:48 2021 8.1159810271333e+14] ...are/nvim/site/pack/packer/opt/packer.nvim/lua/packer.lua:308: Processing plugin specs
[DEBUG Mon Jul 19 23:56:48 2021 8.1159811022954e+14] .../pack/packer/opt/packer.nvim/lua/packer/plugin_utils.lua:176: Updating FS state