This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
.nvim/lua/plugins/appearance.lua

42 lines
834 B
Lua
Raw Normal View History

2023-10-30 14:45:32 -03:00
-- Plugins related to the colorscheme and Neovim appearence
2023-12-30 06:01:03 -03:00
return { --[[ {
2023-10-30 14:45:32 -03:00
'shaunsingh/nord.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme('nord');
2023-12-30 06:01:03 -03:00
if not vim.g.startted_by_firenvim then
vim.g.nord_disable_background = true;
else
vim.g.nord_disable_background = false;
end
2023-10-30 14:45:32 -03:00
require('nord').set();
end,
2023-12-30 06:01:03 -03:00
}, ]] --
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 100,
config = function()
require('catppuccin').setup({
flavour = 'mocha',
transparent_background = true,
});
vim.cmd.colorscheme('catppuccin');
end
}, {
2023-10-30 14:45:32 -03:00
'nvim-lualine/lualine.nvim',
opts = {
options = {
icons_enabled = false,
2023-12-30 06:01:03 -03:00
theme = 'catppuccin',
2023-10-30 14:45:32 -03:00
component_separators = '|',
section_separators = '',
},
},
}, {
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
opts = {},
} };