40 lines
809 B
Lua
40 lines
809 B
Lua
-- I use dark terminals and schemes, so use a dark background.
|
|
vim.opt.background = 'dark'
|
|
|
|
-- Settings for gruvbox-material
|
|
vim.g.gruvbox_material_palette = 'mix'
|
|
vim.g.gruvbox_material_background = 'hard'
|
|
vim.g.gruvbox_material_enable_bold = 1
|
|
|
|
-- Settings for material
|
|
vim.g.material_style = "palenight"
|
|
|
|
require('material').setup {
|
|
|
|
italics = {
|
|
comments = true, -- Enable italic comments
|
|
},
|
|
|
|
plugins = {
|
|
neogit = false,
|
|
sidebar_nvim = false,
|
|
lsp_saga = false,
|
|
nvim_dap = false,
|
|
nvim_navic = false,
|
|
hop = false,
|
|
}
|
|
}
|
|
|
|
-- Settings for nightfox
|
|
-- Available colorscheme values: nightfox, duskfox, nordfox, terafox
|
|
require('nightfox').setup({
|
|
options = {
|
|
styles = {
|
|
comments = "italic",
|
|
keywords = "bold",
|
|
}
|
|
}
|
|
})
|
|
|
|
-- Set the color scheme
|
|
vim.cmd 'colorscheme terafox'
|