mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 16:39:42 -04:00
Added github theme
This commit is contained in:
parent
d775f3e2e9
commit
61b5a9cb53
1 changed files with 25 additions and 14 deletions
|
|
@ -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,22 +25,25 @@ return packer.startup(function(use)
|
|||
}
|
||||
|
||||
-- Neo-Tree
|
||||
use {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
branch = "v2.x",
|
||||
requires = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"MunifTanjim/nui.nvim",
|
||||
}
|
||||
use {"nvim-neo-tree/neo-tree.nvim",
|
||||
branch = "v2.x",
|
||||
requires = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"MunifTanjim/nui.nvim",
|
||||
}
|
||||
}
|
||||
|
||||
-- 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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue