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

26 lines
487 B
Lua
Raw Normal View History

2023-10-30 14:45:32 -03:00
-- Plugins related to the colorscheme and Neovim appearence
return { {
'shaunsingh/nord.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme('nord');
vim.g.nord_disable_background = true;
require('nord').set();
end,
}, {
'nvim-lualine/lualine.nvim',
opts = {
options = {
icons_enabled = false,
theme = 'nord',
component_separators = '|',
section_separators = '',
},
},
}, {
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
opts = {},
} };