Packer and colorscheme not installing

This page summarizes the projects mentioned and recommended in the original post on /r/neovim

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • packer.nvim

    A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config

  • local ensure_packer = function() 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 }) vim.cmd([[packadd packer.nvim]]) return true end return false end local packer_bootstrap = ensure_packer() -- true if packer was just installed -- autocommand that reloads neovim and installs/updates/removes plugins -- when file is saved vim.cmd([[ augroup packer_user_config autocmd! autocmd BufWritePost plugins-setup.lua source | PackerSync augroup end ]]) -- import packer safely local status, packer = pcall(require, "packer") if not status then return end -- add list of plugins to install return packer.startup(function(use) -- packer can manage itself use("wbthomason/packer.nvim") use("nvim-lua/plenary.nvim") -- lua functions that many plugins use use("bluz71/vim-nightfly-guicolors") -- preferred colorscheme if packer_bootstrap then require("packer").sync() end end)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts