summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorjoott <josh@ottmail.me>2025-07-26 09:27:59 -0400
committerjoott <josh@ottmail.me>2025-07-26 09:27:59 -0400
commitc045540bbc6a965468b8ac501ca9ddc26faec297 (patch)
tree68e9bc1e72566ab90164e91872576d0a8bdc956e /nvim/lua/plugins.lua
parent7172037523bbc6bb3588ce9069c76d6a02f28eca (diff)
downloaddotfiles-c045540bbc6a965468b8ac501ca9ddc26faec297.tar.gz
dotfiles-c045540bbc6a965468b8ac501ca9ddc26faec297.zip
nvim plugins
Diffstat (limited to 'nvim/lua/plugins.lua')
-rw-r--r--nvim/lua/plugins.lua31
1 files changed, 17 insertions, 14 deletions
diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua
index 4dacb75..cef0328 100644
--- a/nvim/lua/plugins.lua
+++ b/nvim/lua/plugins.lua
@@ -1,13 +1,13 @@
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", -- latest stable release
- lazypath,
- })
+ vim.fn.system({
+ "git",
+ "clone",
+ "--filter=blob:none",
+ "https://github.com/folke/lazy.nvim.git",
+ "--branch=stable", -- latest stable release
+ lazypath,
+ })
end
vim.opt.rtp:prepend(lazypath)
@@ -33,6 +33,7 @@ require("lazy").setup({
{ 'akinsho/toggleterm.nvim', version = "*", config = true },
{ 'echasnovski/mini.files', version = '*' },
{ 'echasnovski/mini.trailspace', version = '*' },
+ { 'echasnovski/mini.move', version = '*' },
{ 'numToStr/Comment.nvim', lazy = false, },
{
"goolord/alpha-nvim",
@@ -72,15 +73,13 @@ require("lazy").setup({
'romgrk/barbar.nvim',
init = function() vim.g.barbar_auto_setup = false end,
opts = {
- -- Set the filetypes which barbar will offset itself for
sidebar_filetypes = {
undotree = {
- text = 'undotree',
- align = 'center', -- *optionally* specify an alignment (either 'left', 'center', or 'right')
+ text = 'undotree',
+ align = 'center',
},
},
},
- version = '^1.0.0', -- optional: only update when a new 1.x version is released
},
{
'windwp/nvim-autopairs',
@@ -88,12 +87,16 @@ require("lazy").setup({
config = true
},
{
- "RedsXDD/neopywal.nvim",
+ 'RedsXDD/neopywal.nvim',
name = "neopywal",
lazy = false,
priority = 1000,
opts = {
use_palette = 'wallust',
},
- }
+ },
+ {
+ 'hedyhli/outline.nvim',
+ config = function() require("outline").setup() end,
+ },
})