adding bufferline and changing color.lua

This commit is contained in:
judokasarin 2024-03-13 13:12:22 +05:30
parent 28d630d239
commit 3d9da01eb7
2 changed files with 49 additions and 39 deletions

View File

@ -0,0 +1,11 @@
-- return {
-- 'akinsho/bufferline.nvim',
-- version = "*",
-- dependencies = 'nvim-tree/nvim-web-devicons',
-- opts = {
-- options = {
-- mode = "buffers",
-- separator_style = "slant",
-- }
-- }
-- }

View File

@ -30,7 +30,7 @@ return { -- You can easily change to a different colorscheme.
dim_inactive = false,
transparent_mode = false,
},
config = function()
init = function()
-- Load the colorscheme here
vim.cmd.colorscheme 'gruvbox'
vim.o.background = 'dark'
@ -38,5 +38,4 @@ return { -- You can easily change to a different colorscheme.
-- You can configure highlights by doing something like
vim.cmd.hi 'Comment gui=none'
end,
}
}