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
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",
config = function()
require("indent_blankline").setup {
@ -16,8 +25,7 @@ return packer.startup(function(use)
}
-- Neo-Tree
use {
"nvim-neo-tree/neo-tree.nvim",
use {"nvim-neo-tree/neo-tree.nvim",
branch = "v2.x",
requires = {
"nvim-lua/plenary.nvim",
@ -26,12 +34,16 @@ return packer.startup(function(use)
}
}
-- Lualine (bottom line)
use {
'nvim-lualine/lualine.nvim',
-- Lualine
use {'nvim-lualine/lualine.nvim',
after = 'github-nvim-theme',
requires = { 'kyazdani42/nvim-web-devicons', opt = true },
config = function()
require('lualine').setup {}
require('lualine').setup {
options = {
theme = 'auto'
}
}
end
}
@ -60,6 +72,5 @@ return packer.startup(function(use)
}
}
end)