theme: disable italics and eol char

This commit is contained in:
Matej Janezic 2023-02-21 09:06:02 +01:00
parent 076f5cc0ee
commit 0fadf252df
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
2 changed files with 2 additions and 2 deletions

View File

@ -42,6 +42,6 @@ vim.o.completeopt = 'menuone,noselect'
vim.o.termguicolors = true
-- set custom end of line character
vim.cmd [[set list listchars=eol:﬋]]
-- vim.cmd [[set list listchars=eol:\n]]
return {}

View File

@ -5,7 +5,7 @@ return {
priority = 1000,
config = function()
require('gruvbox').setup({ contrast = 'soft'})
require('gruvbox').setup({ contrast = 'soft', italic = false })
vim.cmd.colorscheme 'gruvbox'
end,
},