update theme
This commit is contained in:
parent
4f77ec1ab9
commit
b799f6bf30
3 changed files with 12 additions and 4 deletions
4
init.lua
4
init.lua
|
@ -20,8 +20,8 @@ return {
|
|||
-- Set colorscheme to use
|
||||
-- colorscheme = "astrodark",
|
||||
-- colorscheme = "catppuccin",
|
||||
colorscheme = "sonokai",
|
||||
-- colorscheme = "monokai-pro-nvim",
|
||||
-- colorscheme = "sonokai",
|
||||
colorscheme = "monokai-pro",
|
||||
|
||||
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
|
||||
diagnostics = {
|
||||
|
|
|
@ -4,9 +4,9 @@ return {
|
|||
-- example of imporing a plugin, comment out to use it or add your own
|
||||
-- available plugins can be found at https://github.com/AstroNvim/astrocommunity
|
||||
|
||||
-- { import = "astrocommunity.colorscheme.catppuccin" },
|
||||
{ import = "astrocommunity.colorscheme.catppuccin" },
|
||||
{ import = "astrocommunity.colorscheme.sonokai" },
|
||||
-- { import = "astrocommunity.colorscheme.monokai-pro-nvim" },
|
||||
{ import = "astrocommunity.colorscheme.monokai-pro-nvim" },
|
||||
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
||||
-- { import = "astrocommunity.pack.typescript" },
|
||||
-- { import = "astrocommunity.pack.markdown" },
|
||||
|
|
|
@ -22,6 +22,14 @@ return {
|
|||
{ "<leader>T", "<cmd>TodoTelescope<cr>", desc = "Open TODOs in Telescope" },
|
||||
},
|
||||
},
|
||||
{
|
||||
"loctvl842/monokai-pro.nvim",
|
||||
config = function()
|
||||
require("monokai-pro").setup {
|
||||
filter = "spectrum", -- classic | octagon | pro | machine | ristretto | spectrum
|
||||
}
|
||||
end
|
||||
},
|
||||
-- {
|
||||
-- "loctvl842/monokai-pro.nvim",
|
||||
-- config = function()
|
||||
|
|
Loading…
Reference in a new issue