Compare commits

...

2 Commits

Author SHA1 Message Date
andrzej eeb54eef78 load options after plugins 2024-03-16 11:00:39 +01:00
andrzej d9eebaf72b install rainbow delimiters 2024-03-16 10:59:56 +01:00
2 changed files with 26 additions and 1 deletions

View File

@ -1,4 +1,3 @@
require("options.default")
require("keymaps")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
@ -17,3 +16,6 @@ vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ { import = "plugins" }, { import = "plugins.lsp" }, { import = "plugins.themes" } })
require("setup.lsp")
vim.cmd("colorscheme rose-pine")
require("options.default")

View File

@ -0,0 +1,23 @@
return {
"https://gitlab.com/HiPhish/rainbow-delimiters.nvim",
config = function()
require('rainbow-delimiters.setup').setup {
-- strategy = {
-- -- ...
-- },
-- query = {
-- -- ...
-- },
highlight = {
'RainbowDelimiterYellow',
'RainbowDelimiterBlue',
'RainbowDelimiterOrange',
'RainbowDelimiterGreen',
'RainbowDelimiterViolet',
'RainbowDelimiterCyan',
},
}
end
}