Files
dotfiles/.config/nvim/lua/plugins/ui.lua

33 lines
825 B
Lua

return {
-- Highlight todo, notes, etc in comments
{
'folke/todo-comments.nvim',
event = 'VimEnter',
dependencies = { 'nvim-lua/plenary.nvim' },
opts = { signs = false },
},
-- Add indentation guides even on blank lines
{
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
opts = {},
},
{
'HiPhish/rainbow-delimiters.nvim',
},
{
'navarasu/onedark.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
init = function()
require('onedark').setup {
style = 'darker',
toggle_style_list = { 'darker', 'light' },
toggle_style_key = '<leader>tt',
}
vim.cmd.colorscheme 'onedark'
-- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none'
end,
},
}