.config/nvim/lua/lazy-bootstrap.lua

changeset 1073
911aa9d81e71
parent 1064
fcfa295076a8
child 1101
40419d8e3cbb
equal deleted inserted replaced
1072:68ed15b14844 1073:911aa9d81e71
11 end 11 end
12 vim.opt.rtp:prepend(vim.env.LAZY or lazypath) 12 vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
13 13
14 require("lazy").setup({ 14 require("lazy").setup({
15 spec = { 15 spec = {
16 -- {
17 -- "themercorp/themer.lua",
18 -- priority = 1000,
19 -- opts = {
20 -- -- colorscheme = "jellybeans",
21 -- },
22 -- },
16 { 23 {
17 "themercorp/themer.lua", 24 "rebelot/kanagawa.nvim",
18 priority = 1000, 25 priority = 1000,
19 opts = { 26 opts = {
20 colorscheme = "jellybeans", 27 keywordStyle = { italic = false },
28 statementStyle = { bold = false },
29 colors = {
30 theme = {
31 all = {
32 ui = {
33 bg = "none",
34 bg_gutter = "none",
35 },
36 },
37 },
38 },
21 }, 39 },
40 config = function(_, opts)
41 require("kanagawa").setup(opts)
42 vim.cmd("colorscheme kanagawa")
43 end,
22 }, 44 },
23 { import = "plugins" }, 45 { import = "plugins" },
24 }, 46 },
25 change_detection = { enabled = false }, 47 change_detection = { enabled = false },
26 performance = { 48 performance = {

mercurial