From ae4a1ef8a8669a3b93840997a72951fcefbbbe2b Mon Sep 17 00:00:00 2001 From: jjwoz Date: Mon, 1 Apr 2024 07:04:52 -0400 Subject: [PATCH] changed color scheme --- init.lua | 35 ++++++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/init.lua b/init.lua index f549997e..9ecb8178 100644 --- a/init.lua +++ b/init.lua @@ -810,27 +810,38 @@ require('lazy').setup({ } end, }, - - { -- You can easily change to a different colorscheme. - -- Change the name of the colorscheme plugin below, and then - -- change the command in the config to whatever the name of that colorscheme is - -- - -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme` - 'folke/tokyonight.nvim', - -- 'sainnhe/gruvbox-material', - priority = 1000, -- make sure to load this before all the other start plugins + { + 'luisiacc/gruvbox-baby', + name = 'gruvbox-baby', + lazy = false, + priority = 1000, init = function() -- 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-storm' + -- vim.cmd.colorscheme 'tokyonight-storm' -- vim.cmd.colorscheme 'gruvbox-material' -- You can configure highlights by doing something like vim.cmd.hi 'Comment gui=none' end, }, + { + 'bluz71/vim-moonfly-colors', + name = 'moonfly', + lazy = false, + priority = 1000, + init = function() + -- 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-storm' + -- vim.cmd.colorscheme 'gruvbox-material' + -- You can configure highlights by doing something like + vim.cmd.hi 'Comment gui=none' + end, + }, -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = true } }, @@ -908,7 +919,6 @@ require('lazy').setup({ -- put them in the right spots if you want. -- NOTE: Next step on your Neovim journey: Add/Configure additional plugins for kickstart - -- -- Here are some example plugins that I've included in the kickstart repository. -- Uncomment any of the lines below to enable them (you will need to restart nvim). -- @@ -943,5 +953,8 @@ require('lazy').setup({ }, }) +-- NOTE: color scheme +vim.cmd.colorscheme 'gruvbox-baby' + -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et