diff --git a/init.lua b/init.lua index 002206a..872cf33 100644 --- a/init.lua +++ b/init.lua @@ -19,7 +19,9 @@ return { -- Set colorscheme to use -- colorscheme = "astrodark", - colorscheme = "catppuccin", + -- colorscheme = "catppuccin", + colorscheme = "sonokai", + -- colorscheme = "monokai-pro-nvim", -- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on diagnostics = { diff --git a/plugins/community.lua b/plugins/community.lua index d64eb56..11cf473 100644 --- a/plugins/community.lua +++ b/plugins/community.lua @@ -4,8 +4,11 @@ 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.completion.copilot-lua-cmp" }, -- { import = "astrocommunity.pack.typescript" }, -- { import = "astrocommunity.pack.markdown" }, + -- { import = "astrocommunity.editing-support.multicursors-nvim" }, } diff --git a/plugins/user.lua b/plugins/user.lua index 6796faf..85e47f3 100644 --- a/plugins/user.lua +++ b/plugins/user.lua @@ -22,4 +22,18 @@ return { { "T", "TodoTelescope", desc = "Open TODOs in Telescope" }, }, }, + -- { + -- "loctvl842/monokai-pro.nvim", + -- config = function() + -- require("monokai-pro-nvim").setup { + -- filter = "spectrum", -- classic | octagon | pro | machine | ristretto | spectrum + -- } + -- end + -- }, + -- { + -- "mg979/vim-visual-multi", + -- event = "User AstroFile", + -- -- lazy = false, + -- -- keys = "gm", + -- }, }