Added github theme

This commit is contained in:
Bryan Ramos 2023-03-27 12:17:40 -04:00
parent d775f3e2e9
commit 61b5a9cb53

View file

@ -6,8 +6,17 @@ return packer.startup(function(use)
-- Install packer.nvim -- Install packer.nvim
use 'wbthomason/packer.nvim' use 'wbthomason/packer.nvim'
-- Github Theme
use ({ 'projekt0n/github-nvim-theme', tag = 'v0.0.7',
config = function()
require('github-theme').setup({
theme_style = "dark_default",
function_style = "italic",
})
end
})
-- Install indent-blankline.nvimuse -- Indent-blankline
use {"lukas-reineke/indent-blankline.nvim", use {"lukas-reineke/indent-blankline.nvim",
config = function() config = function()
require("indent_blankline").setup { require("indent_blankline").setup {
@ -16,8 +25,7 @@ return packer.startup(function(use)
} }
-- Neo-Tree -- Neo-Tree
use { use {"nvim-neo-tree/neo-tree.nvim",
"nvim-neo-tree/neo-tree.nvim",
branch = "v2.x", branch = "v2.x",
requires = { requires = {
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
@ -26,12 +34,16 @@ return packer.startup(function(use)
} }
} }
-- Lualine (bottom line) -- Lualine
use { use {'nvim-lualine/lualine.nvim',
'nvim-lualine/lualine.nvim', after = 'github-nvim-theme',
requires = { 'kyazdani42/nvim-web-devicons', opt = true }, requires = { 'kyazdani42/nvim-web-devicons', opt = true },
config = function() config = function()
require('lualine').setup {} require('lualine').setup {
options = {
theme = 'auto'
}
}
end end
} }
@ -60,6 +72,5 @@ return packer.startup(function(use)
} }
} }
end) end)