From da9190ad67cd3b7cfe7d25f9a1ed4338c9928310 Mon Sep 17 00:00:00 2001 From: ramintheredmn Date: Thu, 4 Apr 2024 14:22:07 +0330 Subject: [PATCH] theme changed to gruvbox --- init.lua | 2 +- lua/custom/plugins/cattpuccin.lua | 10 ---------- lua/custom/plugins/gruvbox.lua | 6 ++++++ lua/custom/plugins/haskell-tools.lua | 5 +++++ 4 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 lua/custom/plugins/cattpuccin.lua create mode 100644 lua/custom/plugins/gruvbox.lua create mode 100644 lua/custom/plugins/haskell-tools.lua diff --git a/init.lua b/init.lua index 59baaf71..fc637d8e 100644 --- a/init.lua +++ b/init.lua @@ -796,7 +796,7 @@ require('lazy').setup({ -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'gruvbox' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' diff --git a/lua/custom/plugins/cattpuccin.lua b/lua/custom/plugins/cattpuccin.lua deleted file mode 100644 index de4e3e53..00000000 --- a/lua/custom/plugins/cattpuccin.lua +++ /dev/null @@ -1,10 +0,0 @@ -return { - 'catppuccin/nvim', - lazy = false, - name = 'catppuccin', - priority = 1000, - config = function() - require('catppuccin').setup() - vim.cmd.colorscheme 'catppuccin' - end, -} diff --git a/lua/custom/plugins/gruvbox.lua b/lua/custom/plugins/gruvbox.lua new file mode 100644 index 00000000..16a106de --- /dev/null +++ b/lua/custom/plugins/gruvbox.lua @@ -0,0 +1,6 @@ +return { + 'ellisonleao/gruvbox.nvim', + priority = 1000, + config = true, + opts = ..., +} diff --git a/lua/custom/plugins/haskell-tools.lua b/lua/custom/plugins/haskell-tools.lua new file mode 100644 index 00000000..a3c0bd0f --- /dev/null +++ b/lua/custom/plugins/haskell-tools.lua @@ -0,0 +1,5 @@ +return { + 'mrcjkb/haskell-tools.nvim', + version = '^3', -- Recommended + ft = { 'haskell', 'lhaskell', 'cabal', 'cabalproject' }, +}