From 9ad9b338576df6ee9fa519d6a910fac7efc6d846 Mon Sep 17 00:00:00 2001 From: Thomas Alcala Schneider Date: Fri, 19 May 2023 12:12:40 +0200 Subject: [PATCH] feat: adding 2 colorschemes --- lua/custom/plugins/themes/purify.lua | 6 ++++++ lua/custom/plugins/themes/vim-monokai-tasty.lua | 6 ++++++ lua/custom/plugins/themes/vim-thematic.lua | 4 ++++ 3 files changed, 16 insertions(+) create mode 100644 lua/custom/plugins/themes/purify.lua create mode 100644 lua/custom/plugins/themes/vim-monokai-tasty.lua diff --git a/lua/custom/plugins/themes/purify.lua b/lua/custom/plugins/themes/purify.lua new file mode 100644 index 00000000..05aaa560 --- /dev/null +++ b/lua/custom/plugins/themes/purify.lua @@ -0,0 +1,6 @@ +return { + 'kyoz/purify', + config = function(plugin) + vim.opt.rtp:append(plugin.dir .. '/vim') + end, +} diff --git a/lua/custom/plugins/themes/vim-monokai-tasty.lua b/lua/custom/plugins/themes/vim-monokai-tasty.lua new file mode 100644 index 00000000..50894626 --- /dev/null +++ b/lua/custom/plugins/themes/vim-monokai-tasty.lua @@ -0,0 +1,6 @@ +return { + 'patstockwell/vim-monokai-tasty', + config = function() + vim.g.monokai_tasty_italic_comments = true + end, +} diff --git a/lua/custom/plugins/themes/vim-thematic.lua b/lua/custom/plugins/themes/vim-thematic.lua index b475a5e9..1aaf2e2c 100644 --- a/lua/custom/plugins/themes/vim-thematic.lua +++ b/lua/custom/plugins/themes/vim-thematic.lua @@ -109,6 +109,8 @@ let g:thematic#themes = { \ }, \ 'pinkmare' : { \ }, +\ 'purify' : { +\ }, \ 'rasmus' : { \ }, \ 'rose-pine' : { @@ -134,6 +136,8 @@ let g:thematic#themes = { \ }, \ 'tokyonight-moon' : { \ }, +\ 'vim-monokai-tasty' : { +\ }, \ 'zephyr' : { \ }, \ }