From 0fadf252dff82bac0befe87f86002803c6851e1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Tue, 21 Feb 2023 09:06:02 +0100 Subject: [PATCH] theme: disable italics and eol char --- lua/options.lua | 2 +- lua/plugins/common.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/options.lua b/lua/options.lua index 2bc537f..35c0ee6 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -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 {} diff --git a/lua/plugins/common.lua b/lua/plugins/common.lua index ea93ae4..0f5a0ff 100644 --- a/lua/plugins/common.lua +++ b/lua/plugins/common.lua @@ -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, },