return { -- Theme { 'wuelnerdotexe/vim-enfocado', lazy = false, config = function() vim.g.enfocad_style = 'nature' vim.cmd 'colo enfocado' end, keys = { { 'c', function() if vim.o.background == 'light' then vim.o.background = 'dark' else vim.o.background = 'light' -- vim.api.nvim_set_hl(0, 'ColorColumn', {bg = '#c0bfbc'}) vim.cmd('redraw') vim.cmd('redraw') end end, desc = 'toggle color themes' }, }, }, -- { -- 'navarasu/onedark.nvim', -- lazy = false, -- opts = { -- style = 'darker', -- toggle_style_key = 'c', -- toggle_style_list = {'darker', 'light'}, -- }, -- config = function() -- require('onedark').load() -- end, -- Indentation { 'nathanaelkane/vim-indent-guides', lazy = false, init = function() vim.g.indent_guides_guide_size = 1 vim.g.indent_guides_tab_guides = 0 vim.g.indent_guides_start_level = 2 vim.g.indent_guides_enable_on_vim_startup = 1 end }, -- Delimiters { 'hiphish/rainbow-delimiters.nvim', lazy = false, }, -- Buffer tabs -- { 'ap/vim-buftabline', lazy = false }, -- Neovim Qt -- { -- 'equalsraf/neovim-gui-shim', -- lazy = false, -- }, }