dotfiles/.config/nvim/lua/plugins.org
2024-08-08 17:07:35 -05:00

903 B

Neovim Plugins

Setup

Use lazy to manage plugins. This block activates lazy.

  local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
  if not vim.loop.fs_stat(lazypath) then
    vim.fn.system({
      "git",
      "clone",
      "--filter=blob:none",
      "https://github.com/folke/lazy.nvim.git",
      "--branch=stable",
      lazypath,
    })
  end
  vim.opt.rtp:prepend(lazypath)

Plugins

I use lightline for a nice status bar. The Ayu theme matches my overall colour scheme. delimitmate provides better delimiter handling. Trailing whitespace is highlighted with vim-trailing-whitespace.

  require('lazy').setup({
    'itchyny/lightline.vim',
    'Raimondi/delimitMate',
    'bronson/vim-trailing-whitespace',
  })