theme changed to gruvbox
This commit is contained in:
parent
08ab0e95e6
commit
da9190ad67
2
init.lua
2
init.lua
|
@ -796,7 +796,7 @@ require('lazy').setup({
|
||||||
-- 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-night'
|
vim.cmd.colorscheme 'gruvbox'
|
||||||
|
|
||||||
-- 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'
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
return {
|
|
||||||
'catppuccin/nvim',
|
|
||||||
lazy = false,
|
|
||||||
name = 'catppuccin',
|
|
||||||
priority = 1000,
|
|
||||||
config = function()
|
|
||||||
require('catppuccin').setup()
|
|
||||||
vim.cmd.colorscheme 'catppuccin'
|
|
||||||
end,
|
|
||||||
}
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
return {
|
||||||
|
'ellisonleao/gruvbox.nvim',
|
||||||
|
priority = 1000,
|
||||||
|
config = true,
|
||||||
|
opts = ...,
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
return {
|
||||||
|
'mrcjkb/haskell-tools.nvim',
|
||||||
|
version = '^3', -- Recommended
|
||||||
|
ft = { 'haskell', 'lhaskell', 'cabal', 'cabalproject' },
|
||||||
|
}
|
Loading…
Reference in New Issue