mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Trying again to update nvim
This commit is contained in:
parent
45c69645c8
commit
1b68e260c4
10 changed files with 353 additions and 221 deletions
16
homeConfig/dotfiles/nvim/lua/plugins/core.lua
Normal file
16
homeConfig/dotfiles/nvim/lua/plugins/core.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
{
|
||||
'projekt0n/github-nvim-theme',
|
||||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
config = function()
|
||||
require('github-theme').setup({
|
||||
options = {
|
||||
transparent = true;
|
||||
}
|
||||
})
|
||||
|
||||
vim.cmd('colorscheme github_dark_high_contrast')
|
||||
end,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue