From 06df56499227e0721af9de8a5fe47844265882a4 Mon Sep 17 00:00:00 2001 From: Alexander Pieck Date: Wed, 31 Jul 2024 10:02:33 +0000 Subject: [PATCH] Update lua/pika/core/options.lua --- lua/pika/core/options.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/pika/core/options.lua b/lua/pika/core/options.lua index 656109f..f105ab1 100644 --- a/lua/pika/core/options.lua +++ b/lua/pika/core/options.lua @@ -46,6 +46,9 @@ o.splitbelow = true -- split horizontal window to the bottom -- turn off swapfile o.swapfile = false +-- Disable the tilde on empty lines +o.fillchars = { eob = " " } + vim.api.nvim_create_autocmd("TextYankPost", { desc = "Highlight when yanking (copying) text", group = vim.api.nvim_create_augroup("kickstart-highlight-yank", { clear = true }),