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
|
-- Set colorscheme to use
|
||||||
-- colorscheme = "astrodark",
|
-- colorscheme = "astrodark",
|
||||||
-- colorscheme = "catppuccin",
|
-- colorscheme = "catppuccin",
|
||||||
colorscheme = "sonokai",
|
-- colorscheme = "sonokai",
|
||||||
-- colorscheme = "monokai-pro-nvim",
|
colorscheme = "monokai-pro",
|
||||||
|
|
||||||
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
|
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
|
|
|
@ -4,9 +4,9 @@ return {
|
||||||
-- example of imporing a plugin, comment out to use it or add your own
|
-- 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
|
-- 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.sonokai" },
|
||||||
-- { import = "astrocommunity.colorscheme.monokai-pro-nvim" },
|
{ import = "astrocommunity.colorscheme.monokai-pro-nvim" },
|
||||||
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
||||||
-- { import = "astrocommunity.pack.typescript" },
|
-- { import = "astrocommunity.pack.typescript" },
|
||||||
-- { import = "astrocommunity.pack.markdown" },
|
-- { import = "astrocommunity.pack.markdown" },
|
||||||
|
|
|
@ -22,6 +22,14 @@ return {
|
||||||
{ "<leader>T", "<cmd>TodoTelescope<cr>", desc = "Open TODOs in Telescope" },
|
{ "<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",
|
-- "loctvl842/monokai-pro.nvim",
|
||||||
-- config = function()
|
-- config = function()
|
||||||
|
|
Loading…
Add table
Reference in a new issue