From 22407307c71214dd2cbcef5e6d8d13a7577a57c1 Mon Sep 17 00:00:00 2001 From: Tom Conley Date: Thu, 15 Aug 2024 11:35:21 -0700 Subject: [PATCH] Relocate barbar --- init.lua | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/init.lua b/init.lua index 2773c9d7..8c549edd 100644 --- a/init.lua +++ b/init.lua @@ -228,23 +228,6 @@ vim.opt.rtp:prepend(lazypath) -- -- NOTE: Here is where you install your plugins. require('lazy').setup({ - - -- For view of open buffers - { - 'romgrk/barbar.nvim', - dependencies = { - 'lewis6991/gitsigns.nvim', - 'nvim-tree/nvim-web-devicones', - }, - init = function() - vim.g.barbar_auto_setup = false - end, - opts = { - animation = false, - }, - version = '^1.0.0', - }, - -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically @@ -337,6 +320,22 @@ require('lazy').setup({ -- Useful for getting pretty icons, but requires a Nerd Font. { 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font }, + + -- For view of open buffers + { + 'romgrk/barbar.nvim', + dependencies = { + 'lewis6991/gitsigns.nvim', + 'nvim-tree/nvim-web-devicones', + }, + init = function() + vim.g.barbar_auto_setup = false + end, + opts = { + animation = false, + }, + version = '^1.0.0', + }, }, config = function() -- Telescope is a fuzzy finder that comes with a lot of different things that