Help me debug my init.lua

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 install_path = vim.fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim" if vim.fn.empty(vim.fn.glob(install_path)) > 0 then vim.fn.execute("!git clone https://github.com/wbthomason/packer.nvim " .. install_path) end vim.api.nvim_exec( [[ augroup Packer autocmd! autocmd BufWritePost init.lua PackerCompile augroup end ]], false ) local use = require("packer").use require("packer").startup(function() use ("wbthomason/packer.nvim") use ("nvim-lua/popup.nvim") use { "nvim-telescope/telescope.nvim", requires = { {"nvim-lua/plenary.nvim"} } } use { "nvim-treesitter/nvim-treesitter", run = ":TSUpdate" } end) if os.getenv("INSTALL") then goto eof end vim.api.nvim_set_option('mouse', 'a') vim.opt.undofile = true vim.o.number = true vim.o.ignorecase = true vim.o.smartcase = true vim.o.clipboard = "unnamedplus" require("findstuff") vim.cmd("autocmd BufWritePre lua vim.lsp.buf.formatting_sync()") ::eof::

  • 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.

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