Update lua/pika/core/options.lua

This commit is contained in:
Alexander Pieck 2024-07-31 10:02:33 +00:00
parent ebc341b853
commit 06df564992

View file

@ -46,6 +46,9 @@ o.splitbelow = true -- split horizontal window to the bottom
-- turn off swapfile -- turn off swapfile
o.swapfile = false o.swapfile = false
-- Disable the tilde on empty lines
o.fillchars = { eob = " " }
vim.api.nvim_create_autocmd("TextYankPost", { vim.api.nvim_create_autocmd("TextYankPost", {
desc = "Highlight when yanking (copying) text", desc = "Highlight when yanking (copying) text",
group = vim.api.nvim_create_augroup("kickstart-highlight-yank", { clear = true }), group = vim.api.nvim_create_augroup("kickstart-highlight-yank", { clear = true }),