22 lines
707 B
Lua
22 lines
707 B
Lua
-- [[ Colorscheme ]]
|
|
-- You can easily change to a different colorscheme.
|
|
-- Change the name of the colorscheme plugin below, and then
|
|
-- change the command under that to load whatever the name of that colorscheme is.
|
|
--
|
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
|
vim.pack.add { 'folke/tokyonight.nvim' }
|
|
---@diagnostic disable-next-line: missing-fields
|
|
require('tokyonight').setup {
|
|
styles = {
|
|
comments = { italic = false }, -- Disable italics in comments
|
|
},
|
|
}
|
|
|
|
vim.pack.add({
|
|
{ src = "https://gitlab.com/motaz-shokry/gruvbox.nvim" }
|
|
})
|
|
|
|
require("gruvbox").setup() -- for configs
|
|
vim.cmd("colorscheme gruvbox-medium") -- apply the theme
|
|
|