Added handful of configs
This commit is contained in:
32
.config/nvim/lua/plugins/ui.lua
Normal file
32
.config/nvim/lua/plugins/ui.lua
Normal file
@@ -0,0 +1,32 @@
|
||||
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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user