changed color scheme
This commit is contained in:
parent
e7b01ccca5
commit
ae4a1ef8a8
35
init.lua
35
init.lua
|
@ -810,27 +810,38 @@ require('lazy').setup({
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
{ -- You can easily change to a different colorscheme.
|
'luisiacc/gruvbox-baby',
|
||||||
-- Change the name of the colorscheme plugin below, and then
|
name = 'gruvbox-baby',
|
||||||
-- change the command in the config to whatever the name of that colorscheme is
|
lazy = false,
|
||||||
--
|
priority = 1000,
|
||||||
-- 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
|
|
||||||
init = function()
|
init = function()
|
||||||
-- Load the colorscheme here.
|
-- Load the colorscheme here.
|
||||||
-- Like many other themes, this one has different styles, and you could load
|
-- Like many other themes, this one has different styles, and you could load
|
||||||
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
-- 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'
|
-- vim.cmd.colorscheme 'gruvbox-material'
|
||||||
|
|
||||||
-- You can configure highlights by doing something like
|
-- You can configure highlights by doing something like
|
||||||
vim.cmd.hi 'Comment gui=none'
|
vim.cmd.hi 'Comment gui=none'
|
||||||
end,
|
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
|
-- Highlight todo, notes, etc in comments
|
||||||
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = true } },
|
{ '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.
|
-- put them in the right spots if you want.
|
||||||
|
|
||||||
-- NOTE: Next step on your Neovim journey: Add/Configure additional plugins for kickstart
|
-- 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.
|
-- 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).
|
-- 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`
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
||||||
-- vim: ts=2 sts=2 sw=2 et
|
-- vim: ts=2 sts=2 sw=2 et
|
||||||
|
|
Loading…
Reference in New Issue