nvim: colorscheme onenord, load also other colorschemes

This commit is contained in:
Łukasz Pankowski 2023-11-25 14:29:01 +01:00
parent 3070322f7d
commit c9feefd91f

View File

@ -5,16 +5,17 @@ end
return { return {
-- Colorscheme -- Colorscheme
{ {
'neanias/everforest-nvim', 'rmehri01/onenord.nvim',
priority = 1000,
lazy = false, lazy = false,
priority = 1000,
config = function() config = function()
require("everforest").setup({ vim.cmd [[colorscheme onenord]]
background = 'hard', end,
})
vim.cmd.colorscheme 'everforest'
end
}, },
'neanias/everforest-nvim',
'bluz71/vim-nightfly-colors',
'bluz71/vim-moonfly-colors',
'Verf/deepwhite.nvim',
{ {
-- Statusline (see `:help lualine.txt`) -- Statusline (see `:help lualine.txt`)
@ -22,7 +23,7 @@ return {
opts = { opts = {
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'everforest', theme = 'auto',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },
@ -36,10 +37,7 @@ return {
-- Indentation guides (see `:help indent_blankline.txt`) -- Indentation guides (see `:help indent_blankline.txt`)
'lukas-reineke/indent-blankline.nvim', 'lukas-reineke/indent-blankline.nvim',
main = "ibl", main = "ibl",
opts = { opts = {},
-- char = '┊',
-- show_trailing_blankline_indent = false,
},
}, },
{ {