- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
Latest commit
12 lines (10 loc) · 539 Bytes
/
Copy pathinit.lua
File metadata and controls
12 lines (10 loc) · 539 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
-- load colorscheme based on indent blankline config
vim.api.nvim_set_hl(0, "RainbowRed", { fg="#E06C75" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg="#E5C07B" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg="#61AFEF" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg="#D19A66" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg="#98C379" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg="#C678DD" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg="#56B6C2" })