From 59e0ea536611dcfe9b3bdae0f236d8b14100fce0 Mon Sep 17 00:00:00 2001 From: Tom Conley Date: Thu, 15 Aug 2024 11:33:36 -0700 Subject: [PATCH] Use tokyonight-moon color scheme; add barbar --- init.lua | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 90a0f481..2773c9d7 100644 --- a/init.lua +++ b/init.lua @@ -228,6 +228,23 @@ 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 @@ -794,7 +811,7 @@ require('lazy').setup({ -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'tokyonight-moon' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none'