set theme to catppuccin mocha
This commit is contained in:
parent
4e4499d522
commit
b10c41292b
|
@ -47,7 +47,7 @@ return {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
vim.cmd.colorscheme 'catppuccin-macchiato'
|
vim.cmd.colorscheme 'catppuccin-mocha'
|
||||||
|
|
||||||
-- Hide all semantic highlights until upstream issues are resolved (https://github.com/catppuccin/nvim/issues/480)
|
-- Hide all semantic highlights until upstream issues are resolved (https://github.com/catppuccin/nvim/issues/480)
|
||||||
for _, group in ipairs(vim.fn.getcompletion('@lsp', 'highlight')) do
|
for _, group in ipairs(vim.fn.getcompletion('@lsp', 'highlight')) do
|
||||||
|
@ -102,5 +102,15 @@ return {
|
||||||
vim.cmd('colorscheme vscode')
|
vim.cmd('colorscheme vscode')
|
||||||
end,
|
end,
|
||||||
enabled = false,
|
enabled = false,
|
||||||
}
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
'calind/selenized.nvim',
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
vim.cmd.colorscheme 'selenized'
|
||||||
|
end,
|
||||||
|
enabled = false,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,21 +23,21 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
init = function()
|
init = function()
|
||||||
local macchiato = require('catppuccin.palettes').get_palette 'macchiato'
|
-- local macchiato = require('catppuccin.palettes').get_palette 'macchiato'
|
||||||
vim.api.nvim_create_autocmd('FileType', {
|
-- vim.api.nvim_create_autocmd('FileType', {
|
||||||
pattern = {
|
-- pattern = {
|
||||||
'help',
|
-- 'help',
|
||||||
'lazy',
|
-- 'lazy',
|
||||||
'mason',
|
-- 'mason',
|
||||||
'notify',
|
-- 'notify',
|
||||||
'oil',
|
-- 'oil',
|
||||||
'Oil',
|
-- 'Oil',
|
||||||
},
|
-- },
|
||||||
callback = function()
|
-- callback = function()
|
||||||
vim.b.miniindentscope_disable = true
|
-- vim.b.miniindentscope_disable = true
|
||||||
end,
|
-- end,
|
||||||
})
|
-- })
|
||||||
vim.api.nvim_set_hl(0, 'MiniIndentscopeSymbol', { fg = macchiato.mauve })
|
-- vim.api.nvim_set_hl(0, 'MiniIndentscopeSymbol', { fg = macchiato.mauve })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue