mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29: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
|
-- 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,22 +25,25 @@ 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",
|
"nvim-tree/nvim-web-devicons",
|
||||||
"nvim-tree/nvim-web-devicons",
|
"MunifTanjim/nui.nvim",
|
||||||
"MunifTanjim/nui.nvim",
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
-- 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)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue